Searched refs:local_path (Results 1 – 6 of 6) sorted by relevance
/system/update_engine/ |
D | hardware_android.cc | 183 base::FilePath local_path(constants::kNonVolatileDirectory); in GetNonVolatileDirectory() local 184 if (!base::DirectoryExists(local_path)) { in GetNonVolatileDirectory() 185 LOG(ERROR) << "Non-volatile directory not found: " << local_path.value(); in GetNonVolatileDirectory() 188 *path = local_path; in GetNonVolatileDirectory()
|
/system/core/adb/ |
D | benchmark_device.py | 101 local_path = "/tmp/adb_benchmark_temp" 103 with open(local_path, "wb") as f: 109 device.push(local=local_path, remote=remote_path) 120 local_path = "/tmp/adb_benchmark_temp" 127 device.pull(remote=remote_path, local=local_path)
|
D | test_device.py | 779 def _verify_local(self, checksum, local_path): argument 780 with open(local_path, 'rb') as host_file: 1195 local_path = os.path.join(host_dir, temp_file.base_name) 1196 self._verify_local(temp_file.checksum, local_path) 1199 local_path = os.path.join(host_dir, 1202 self._verify_local(subdir_temp_file.checksum, local_path)
|
/system/apex/apexd/ |
D | apex_shim.cpp | 132 auto local_path = path.string().substr(resolved_mount_point.length() + 1); in ValidateShimApex() local 144 auto ex = expected_files.find(local_path); in ValidateShimApex() 146 expected_files.erase(local_path); in ValidateShimApex()
|
/system/extras/simpleperf/scripts/inferno/ |
D | inferno.py | 151 def get_local_asset_content(local_path): argument 157 with open(os.path.join(os.path.dirname(__file__), local_path), 'r') as f:
|
/system/core/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()
|