Home
last modified time | relevance | path

Searched refs:IsPreInstalledApex (Results 1 – 5 of 5) sorted by relevance

/aosp12/system/apex/apexd/
H A Dapex_file_repository_test.cpp247 TEST(ApexFileRepositoryTest, IsPreInstalledApex) { in TEST() argument
259 ASSERT_TRUE(instance.IsPreInstalledApex(*compressed_apex)); in TEST()
263 ASSERT_TRUE(instance.IsPreInstalledApex(*apex1)); in TEST()
269 ASSERT_FALSE(instance.IsPreInstalledApex(*apex2)); in TEST()
274 ASSERT_FALSE(instance.IsPreInstalledApex(*apex3)); in TEST()
H A Dapex_file_repository.h89 bool IsPreInstalledApex(const ApexFile& apex) const;
H A Dapexd.cpp537 !instance.IsPreInstalledApex(apex) || instance.IsDecompressedApex(apex); in MountPackageImpl()
1281 !ApexFileRepository::GetInstance().IsPreInstalledApex(apex_file)) { in ActivatePackageImpl()
1682 if (file_repository.IsPreInstalledApex(apex)) { in ActivateMissingApexes()
2234 if (ApexFileRepository::GetInstance().IsPreInstalledApex(*apex)) { in UnstagePackages()
2543 !instance.IsPreInstalledApex(a); in SelectApexForActivation()
2558 if (instance.IsPreInstalledApex(a) && in SelectApexForActivation()
2566 if (!instance.IsPreInstalledApex(a) && in SelectApexForActivation()
2845 return !ApexFileRepository::GetInstance().IsPreInstalledApex(a.get()); in OnStart()
3239 instance.IsPreInstalledApex(apex), is_active, mtime); in CollectApexInfoList()
3749 if (!ApexFileRepository::GetInstance().IsPreInstalledApex(*cur_apex)) { in InstallPackage()
H A Dapex_file_repository.cpp216 bool ApexFileRepository::IsPreInstalledApex(const ApexFile& apex) const { in IsPreInstalledApex() function in android::apex::ApexFileRepository
H A Dapexservice.cpp324 out.isFactory = instance.IsPreInstalledApex(package); in GetApexInfo()