Home
last modified time | relevance | path

Searched refs:apks (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/tests/coretests/apks/keyset/
DAndroid.bp1 //apks signed by keyset_A
58 //apks signed by keyset_B
83 //apks signed by keyset_A and keyset_B
93 //apks signed by keyset_A and unit_test
103 //apks signed by platform only
112 //apks signed by platform and keyset_A
/frameworks/base/core/java/android/content/pm/dex/
DDexMetadataHelper.java203 ArrayList<String> apks = new ArrayList<>(); in validateDexPaths() local
206 apks.add(paths[i]); in validateDexPaths()
214 for (int j = apks.size() - 1; j >= 0; j--) { in validateDexPaths()
215 if (dmPath.equals(buildDexMetadataPathForFile(new File(apks.get(j))))) { in validateDexPaths()
/frameworks/base/tests/RollbackTest/
DREADME.txt12 - source for dummy apks used in testing.
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DShortcutManagerTest5.java133 List<PackageInfo> apks = mShortcutService.getInstalledPackages(mMyUserId); in testGetInstalledPackages() local
136 for (PackageInfo pi : apks) { in testGetInstalledPackages()
/frameworks/base/core/tests/coretests/
DAndroid.bp63 // Rules to copy all the test apks to the intermediate raw resource directory
/frameworks/rs/tests/lldb/
DREADME.txt66 --no-install, -n Stop the test suite installing apks to device.
67 --no-uninstall Stop the test suite uninstalling apks after
/frameworks/base/core/java/android/content/pm/
DPackageParser.java917 final ArrayMap<String, ApkLite> apks = new ArrayMap<>(); in parseClusterPackageLite() local
941 if (apks.put(lite.splitName, lite) != null) { in parseClusterPackageLite()
950 final ApkLite baseApk = apks.remove(null); in parseClusterPackageLite()
957 final int size = apks.size(); in parseClusterPackageLite()
974 splitNames = apks.keySet().toArray(splitNames); in parseClusterPackageLite()
978 final ApkLite apk = apks.get(splitNames[i]); in parseClusterPackageLite()