Searched refs:full_path (Results 1 – 7 of 7) sorted by relevance
/system/apex/apexd/ |
D | apex_database.h | 35 std::string full_path; // Full path to the apex file. member 40 MountedApexData(const std::string& loop_name, const std::string& full_path, in MountedApexData() 44 full_path(full_path), in MountedApexData() 55 compare_val = full_path.compare(rhs.full_path); 120 const std::string& full_path) { in RemoveMountedApex() argument 129 if (pkg_it->first.full_path == full_path) { in RemoveMountedApex() 137 const std::string& full_path) { in SetLatest() argument 144 if (pkg_it->first.full_path == full_path) { in SetLatest() 156 LOG(FATAL) << "Did not find " << package << " " << full_path; in SetLatest()
|
D | apex_database_test.cpp | 92 const std::string& loop_name, const std::string& full_path, in Contains() argument 97 if (package == p && loop_name == d.loop_name && full_path == d.full_path && in Contains() 106 const std::string& loop_name, const std::string& full_path, in ContainsPackage() argument 111 if (loop_name == d.loop_name && full_path == d.full_path && in ContainsPackage()
|
D | apexd.h | 54 Status activatePackage(const std::string& full_path) WARN_UNUSED; 55 Status deactivatePackage(const std::string& full_path) WARN_UNUSED;
|
D | apexd.cpp | 401 const std::string& full_path = apex.GetPath(); in mountNonFlattened() local 406 << full_path << " because device doesn't support it"); in mountNonFlattened() 412 full_path, apex.GetImageOffset(), apex.GetImageSize()); in mountNonFlattened() 419 << "Could not create loop device for " << full_path in mountNonFlattened() 429 << full_path << ": " << verityData.ErrorMessage()); in mountNonFlattened() 440 gForceDmVerityOnSystem || !isPathForBuiltinApexes(full_path); in mountNonFlattened() 451 << full_path << ": " << verityDevRes.ErrorMessage()); in mountNonFlattened() 483 LOG(INFO) << "Successfully mounted package " << full_path << " on " in mountNonFlattened() 488 return StatusM::Fail(StringLog() << "Failed to verify " << full_path in mountNonFlattened() 500 << full_path << " : " << strerror(errno)); in mountNonFlattened() [all …]
|
D | apexd_private.h | 42 bool IsMounted(const std::string& name, const std::string& full_path);
|
D | apex_database.cpp | 287 SetLatest(package, mountData->full_path); in PopulateFromMounts()
|
/system/core/adb/ |
D | test_device.py | 650 self.full_path = handle.name 651 self.base_name = os.path.basename(self.full_path) 655 def __init__(self, checksum, full_path): argument 657 self.full_path = full_path 658 self.base_name = posixpath.basename(self.full_path) 689 full_path = posixpath.join(in_dir, base_name) 691 device.shell(['dd', 'if=/dev/urandom', 'of={}'.format(full_path), 693 dev_md5, _ = device.shell([get_md5_prog(device), full_path])[0].split() 695 files.append(DeviceFile(dev_md5, full_path)) 832 paths = map(lambda temp_file: temp_file.full_path, temp_files) [all …]
|