Home
last modified time | relevance | path

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

/system/apex/apexd/
Dapexd.cpp722 void SendApexInstallationRequestedAtom(const std::string& package_path, in SendApexInstallationRequestedAtom() argument
729 auto apex_file = ApexFile::Open(package_path); in SendApexInstallationRequestedAtom()
732 << package_path << ": " << apex_file.error(); in SendApexInstallationRequestedAtom()
738 if (stat(package_path.c_str(), &stat_buf) == 0) { in SendApexInstallationRequestedAtom()
741 PLOG(WARNING) << "Failed to stat " << package_path; in SendApexInstallationRequestedAtom()
744 Result<std::string> apex_file_sha256_str = CalculateSha256(package_path); in SendApexInstallationRequestedAtom()
761 void SendApexInstallationEndedAtom(const std::string& package_path, in SendApexInstallationEndedAtom() argument
767 Result<std::string> apex_file_sha256_str = CalculateSha256(package_path); in SendApexInstallationEndedAtom()
3918 Result<ApexFile> InstallPackageImpl(const std::string& package_path, in InstallPackageImpl() argument
3920 auto temp_apex = ApexFile::Open(package_path); in InstallPackageImpl()
[all …]
Dapexservice.cpp120 BinderStatus installAndActivatePackage(const std::string& package_path,
545 const std::string& package_path, bool force, ApexInfo* aidl_return) { in installAndActivatePackage() argument
547 << package_path << " force : " << force; in installAndActivatePackage()
561 auto res = InstallPackage(package_path, force); in installAndActivatePackage()
563 LOG(ERROR) << "Failed to install package " << package_path << " : " in installAndActivatePackage()
Dapexd.h224 android::base::Result<ApexFile> InstallPackage(const std::string& package_path,