Home
last modified time | relevance | path

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

/system/apex/libs/libapexutil/
Dapexutil.cpp37 Result<ApexManifest> ParseApexManifest(const std::string &manifest_path) { in ParseApexManifest() argument
39 if (!ReadFileToString(manifest_path, &content)) { in ParseApexManifest()
40 return Error() << "Failed to read manifest file: " << manifest_path; in ParseApexManifest()
44 return Error() << "Can't parse APEX manifest: " << manifest_path; in ParseApexManifest()
/system/apex/tools/
Dapex_compression_test.py191 def _get_manifest_string(self, manifest_path): argument
195 manifest_path
200 def _unset_original_apex_digest(self, manifest_path): argument
202 with open(manifest_path, 'rb') as f:
206 with open(manifest_path, 'wb') as f:
/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()