Home
last modified time | relevance | path

Searched refs:manifest_path (Results 1 – 2 of 2) sorted by relevance

/system/apex/libs/libapexutil/
Dapexutil.cpp36 Result<ApexManifest> ParseApexManifest(const std::string &manifest_path) { in ParseApexManifest() argument
38 if (!ReadFileToString(manifest_path, &content)) { in ParseApexManifest()
39 return Error() << "Failed to read manifest file: " << manifest_path; in ParseApexManifest()
43 return Error() << "Can't parse APEX manifest: " << manifest_path; in ParseApexManifest()
/system/core/init/
Dmount_namespace.cpp98 const std::string manifest_path = apex_dir + "/apex_manifest.pb"; in GetApexManifest() local
100 if (!android::base::ReadFileToString(manifest_path, &content)) { in GetApexManifest()
101 return Error() << "Failed to read manifest file: " << manifest_path; in GetApexManifest()
105 return Error() << "Can't parse manifest file: " << manifest_path; in GetApexManifest()