Home
last modified time | relevance | path

Searched refs:remote_path (Results 1 – 3 of 3) sorted by relevance

/system/core/adb/
Dbenchmark_device.py100 remote_path = "/dev/null"
109 device.push(local=local_path, remote=remote_path)
119 remote_path = "/data/local/tmp/adb_benchmark_temp"
122 device.shell(["dd", "if=/dev/zero", "of=" + remote_path, "bs=1m",
127 device.pull(remote=remote_path, local=local_path)
Dtest_device.py774 def _verify_remote(self, checksum, remote_path): argument
776 remote_path])[0].split()
816 remote_path = posixpath.join(self.DEVICE_TEMP_DIR,
819 self._verify_remote(temp_file.checksum, remote_path)
842 remote_path = os.path.join(self.DEVICE_TEMP_DIR, "empty")
843 test_empty_cmd = ["[", "-d", remote_path, "]"]
907 remote_path = posixpath.join(self.DEVICE_TEMP_DIR,
909 self._verify_remote(temp_file.checksum, remote_path)
912 remote_path = posixpath.join(self.DEVICE_TEMP_DIR,
916 self._verify_remote(temp_file.checksum, remote_path)
[all …]
/system/core/adb/client/
Dfile_sync_client.cpp68 static void ensure_trailing_separators(std::string& local_path, std::string& remote_path) { in ensure_trailing_separators() argument
72 if (remote_path.back() != '/') { in ensure_trailing_separators()
73 remote_path.push_back('/'); in ensure_trailing_separators()
94 const std::string& remote_path, in copyinfo()
97 : lpath(local_path), rpath(remote_path), mode(mode) { in copyinfo()