Home
last modified time | relevance | path

Searched refs:getAppDexInstructionSets (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
DInstructionSets.java38 public static String[] getAppDexInstructionSets(ApplicationInfo info) { in getAppDexInstructionSets() method in InstructionSets
53 public static String[] getAppDexInstructionSets(PackageSetting ps) { in getAppDexInstructionSets() method in InstructionSets
DOtaDexoptService.java19 import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
375 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo); in moveAbArtifacts()
DPackageDexOptimizer.java65 import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
161 targetInstructionSets : getAppDexInstructionSets(pkg.applicationInfo); in performDexOptLI()
444 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo); in dumpDexoptState()
DPackageManagerService.java97 import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
8800 pkgSetting.resourcePathString, getAppDexInstructionSets(pkgSetting));
8872 pkgSetting.resourcePathString, getAppDexInstructionSets(pkgSetting));
9352 final String[] instructionSets = getAppDexInstructionSets(p.applicationInfo);
16716 getAppDexInstructionSets(deletedPackage.applicationInfo));
18792 ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps));
24544 instructionSets = getAppDexInstructionSets(pkg.applicationInfo);
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexManager.java58 import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
563 for (String isa : getAppDexInstructionSets(info)) { in registerDexModule()
/frameworks/base/core/tests/coretests/src/android/content/pm/
DPackageManagerTests.java3288 for(String isa : getAppDexInstructionSets(info)) { in testRegisterDexModuleSuccessfully()
3310 private static String[] getAppDexInstructionSets(ApplicationInfo info) { in getAppDexInstructionSets() method in PackageManagerTests