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.py704 def _verify_remote(self, checksum, remote_path): argument
706 remote_path])[0].split()
746 remote_path = posixpath.join(self.DEVICE_TEMP_DIR,
749 self._verify_remote(temp_file.checksum, remote_path)
772 remote_path = os.path.join(self.DEVICE_TEMP_DIR, "empty")
773 test_empty_cmd = ["[", "-d", remote_path, "]"]
837 remote_path = posixpath.join(self.DEVICE_TEMP_DIR,
839 self._verify_remote(temp_file.checksum, remote_path)
842 remote_path = posixpath.join(self.DEVICE_TEMP_DIR,
846 self._verify_remote(temp_file.checksum, remote_path)
[all …]
/system/core/adb/client/
Dfile_sync_client.cpp61 static void ensure_trailing_separators(std::string& local_path, std::string& remote_path) { in ensure_trailing_separators() argument
65 if (remote_path.back() != '/') { in ensure_trailing_separators()
66 remote_path.push_back('/'); in ensure_trailing_separators()
87 const std::string& remote_path, in copyinfo()
90 : lpath(local_path), rpath(remote_path), mode(mode) { in copyinfo()