Lines Matching refs:apex_path
196 const ApexPath& apex_path = apex_paths[current_index]; in OpenApexFiles() local
197 Result<ApexFile> apex_file = ApexFile::Open(apex_path.path); in OpenApexFiles()
200 apex_path.partition), in OpenApexFiles()
203 return Error() << "Failed to open apex file " << apex_path.path in OpenApexFiles()
242 for (const auto& apex_path : all_apex_paths) { in AddPreInstalledApex() local
243 Result<ApexFile> apex_file = ApexFile::Open(apex_path.path); in AddPreInstalledApex()
245 return Error() << "Failed to open " << apex_path.path << " : " in AddPreInstalledApex()
249 StorePreInstalledApex(std::move(*apex_file), apex_path.partition); in AddPreInstalledApex()
331 const std::string apex_path = in AddBlockApex() local
334 auto apex_ready = WaitForFile(apex_path, kBlockApexWaitTime); in AddBlockApex()
339 auto apex_file = ApexFile::Open(apex_path); in AddBlockApex()
341 return Error() << "Failed to open " << apex_path << " : " in AddBlockApex()
346 LOG(INFO) << "Found host apex " << name << " at " << apex_path; in AddBlockApex()
352 return Error() << "public key doesn't match: " << apex_path; in AddBlockApex()
359 return Error() << "manifest name doesn't match: " << apex_path; in AddBlockApex()
364 return Error() << "manifest version doesn't match: " << apex_path; in AddBlockApex()
386 block_apex_overrides_.emplace(apex_path, std::move(overrides)); in AddBlockApex()