Searched refs:local_path (Results 1 – 3 of 3) sorted by relevance
/packages/modules/adb/ |
D | benchmark_device.py | 107 local_path = "/tmp/adb_benchmark_temp" 109 with open(local_path, "wb") as f: 115 device.push(local=local_path, remote=remote_path) 126 local_path = "/tmp/adb_benchmark_temp" 133 device.pull(remote=remote_path, local=local_path)
|
D | test_device.py | 758 def _verify_local(self, checksum, local_path): argument 759 with open(local_path, 'rb') as host_file: 1173 local_path = os.path.join(host_dir, temp_file.base_name) 1174 self._verify_local(temp_file.checksum, local_path) 1177 local_path = os.path.join(host_dir, 1180 self._verify_local(subdir_temp_file.checksum, local_path)
|
/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 69 if (!adb_is_separator(local_path.back())) { in ensure_trailing_separators() 70 local_path.push_back(OS_PATH_SEPARATOR); in ensure_trailing_separators() 93 copyinfo(const std::string& local_path, in copyinfo() 97 : lpath(local_path), rpath(remote_path), mode(mode) { in copyinfo()
|