Home
last modified time | relevance | path

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

/system/update_engine/
Dhardware_android.cc189 base::FilePath local_path(constants::kNonVolatileDirectory); in GetNonVolatileDirectory() local
190 if (!base::PathExists(local_path)) { in GetNonVolatileDirectory()
191 LOG(ERROR) << "Non-volatile directory not found: " << local_path.value(); in GetNonVolatileDirectory()
194 *path = local_path; in GetNonVolatileDirectory()
/system/core/adb/
Dtest_device.py734 def _verify_local(self, checksum, local_path): argument
735 with open(local_path, 'rb') as host_file:
1119 local_path = os.path.join(host_dir, temp_file.base_name)
1120 self._verify_local(temp_file.checksum, local_path)
1123 local_path = os.path.join(host_dir,
1126 self._verify_local(subdir_temp_file.checksum, local_path)
Dfile_sync_client.cpp57 static void ensure_trailing_separators(std::string& local_path, std::string& remote_path) { in ensure_trailing_separators() argument
58 if (!adb_is_separator(local_path.back())) { in ensure_trailing_separators()
59 local_path.push_back(OS_PATH_SEPARATOR); in ensure_trailing_separators()
82 copyinfo(const std::string& local_path, in copyinfo()
86 : lpath(local_path), rpath(remote_path), mode(mode) { in copyinfo()