Searched refs:remote_path (Results 1 – 3 of 3) sorted by relevance
/packages/modules/adb/ |
D | benchmark_device.py | 100 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)
|
D | test_device.py | 775 def _verify_remote(self, checksum, remote_path): argument 777 remote_path])[0].split() 817 remote_path = posixpath.join(self.DEVICE_TEMP_DIR, 820 self._verify_remote(temp_file.checksum, remote_path) 843 remote_path = os.path.join(self.DEVICE_TEMP_DIR, "empty") 844 test_empty_cmd = ["[", "-d", remote_path, "]"] 908 remote_path = posixpath.join(self.DEVICE_TEMP_DIR, 910 self._verify_remote(temp_file.checksum, remote_path) 913 remote_path = posixpath.join(self.DEVICE_TEMP_DIR, 917 self._verify_remote(temp_file.checksum, remote_path) [all …]
|
/packages/modules/adb/client/ |
D | file_sync_client.cpp | 68 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()
|