Home
last modified time | relevance | path

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

/system/linkerconfig/testdata/
Dprepare_root.sh96 apexInfo=$ROOT_OUT/apex/apex-info-list.xml
97 echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>" > $apexInfo
98 echo "<apex-info-list>" > $apexInfo
111 …preinstalledModulePath=\"$preinstalled_path\" isFactory=\"true\" isActive=\"true\" />" >> $apexInfo
113 …reinstalledModulePath=\"$preinstalled_path\" isFactory=\"true\" isActive=\"false\" />" >> $apexInfo
119 echo "</apex-info-list>" >> $apexInfo
/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.cpp372 ApexInfo apexInfo = getApexInfo(package); in getActivePackages() local
373 apexInfo.isActive = true; in getActivePackages()
374 aidl_return->push_back(std::move(apexInfo)); in getActivePackages()
Dapexservice_test.cpp198 [](const ApexInfo& apexInfo) { return apexInfo.isActive; }), in GetInactivePackages() argument
253 [](ApexInfo& apexInfo) { return !apexInfo.isFactory; }), in GetFactoryPackages() argument
1420 for (ApexInfo& apexInfo : *allPackages) { in TEST_F()
1421 std::string packageString = GetPackageString(apexInfo); in TEST_F()
1427 ASSERT_EQ(shouldBeActive, apexInfo.isActive); in TEST_F()
1428 ASSERT_EQ(shouldBeFactory, apexInfo.isFactory); in TEST_F()
Dapexd.cpp1077 com::android::apex::ApexInfo apexInfo( in emitApexInfoList() local
1081 apexInfos.emplace_back(apexInfo); in emitApexInfoList()