• Home
  • Raw
  • Download

Lines Matching refs:full_path

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()
1034 if (d.full_path == apex.GetPath()) { in UnmountPackage()
1087 bool IsMounted(const std::string& name, const std::string& full_path) { in IsMounted() argument
1091 if (full_path == data.full_path) { in IsMounted()
1145 StatusOr<ApexFile> otherApex = ApexFile::Open(data.full_path); in activatePackageImpl()
1198 Status activatePackage(const std::string& full_path) { in activatePackage() argument
1199 LOG(INFO) << "Trying to activate " << full_path; in activatePackage()
1201 StatusOr<ApexFile> apex_file = ApexFile::Open(full_path); in activatePackage()
1208 Status deactivatePackage(const std::string& full_path) { in deactivatePackage() argument
1209 LOG(INFO) << "Trying to deactivate " << full_path; in deactivatePackage()
1211 StatusOr<ApexFile> apexFile = ApexFile::Open(full_path); in deactivatePackage()
1227 StatusOr<ApexFile> apexFile = ApexFile::Open(data.full_path); in getActivePackages()
1910 const std::string& path = data.full_path; in unmountDanglingMounts()