Home
last modified time | relevance | path

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

/system/apex/tests/util/com/android/tests/util/
DModuleTestUtils.java83 ApexInfo apexInfo = new ApexInfo(m.group(1), Long.parseLong(m.group(2))); in getApexInfo() local
84 return apexInfo; in getApexInfo()
/system/apex/apexd/
Dapexservice.cpp373 ApexInfo apexInfo = getApexInfo(package); in getActivePackages() local
374 apexInfo.isActive = true; in getActivePackages()
375 aidl_return->push_back(std::move(apexInfo)); in getActivePackages()
Dapexservice_test.cpp217 [](const ApexInfo& apexInfo) { return apexInfo.isActive; }), in GetInactivePackages() argument
272 [](ApexInfo& apexInfo) { return !apexInfo.isFactory; }), in GetFactoryPackages() argument
1429 for (ApexInfo& apexInfo : *allPackages) { in TEST_F()
1430 std::string packageString = GetPackageString(apexInfo); in TEST_F()
1436 ASSERT_EQ(shouldBeActive, apexInfo.isActive); in TEST_F()
1437 ASSERT_EQ(shouldBeFactory, apexInfo.isFactory); in TEST_F()