Home
last modified time | relevance | path

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

/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/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/support/buildSrc/
Dinit.gradle263 // For test apks, they are uploaded only if we have java test sources.
264 // For regular app apks, they are uploaded only if they have java sources.
/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.java909 final ArrayMap<String, ApkLite> apks = new ArrayMap<>(); in parseClusterPackageLite() local
933 if (apks.put(lite.splitName, lite) != null) { in parseClusterPackageLite()
942 final ApkLite baseApk = apks.remove(null); in parseClusterPackageLite()
949 final int size = apks.size(); in parseClusterPackageLite()
966 splitNames = apks.keySet().toArray(splitNames); in parseClusterPackageLite()
970 final ApkLite apk = apks.get(splitNames[i]); in parseClusterPackageLite()