Searched refs:instructionSets (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/services/core/java/com/android/server/pm/ |
D | InstructionSets.java | 82 public static String[] getDexCodeInstructionSets(String[] instructionSets) { in getDexCodeInstructionSets() argument 83 ArraySet<String> dexCodeInstructionSets = new ArraySet<String>(instructionSets.length); in getDexCodeInstructionSets() 84 for (String instructionSet : instructionSets) { in getDexCodeInstructionSets()
|
D | PackageDexOptimizer.java | 131 String[] instructionSets, CompilerStats.PackageStats packageStats, in performDexOpt() argument 143 return performDexOptLI(pkg, instructionSets, in performDexOpt() 160 final String[] instructionSets = targetInstructionSets != null ? in performDexOptLI() local 162 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets); in performDexOptLI() 456 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo); in dumpDexoptState() local 457 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets); in dumpDexoptState()
|
D | OtaDexoptService.java | 388 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo); in moveAbArtifacts() local 390 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets); in moveAbArtifacts()
|
D | PackageInstallerSession.java | 1702 final String[] instructionSets = InstructionSets.getAllDexCodeInstructionSets(); in validateApkInstallLocked() local 1705 if (!ArrayUtils.contains(instructionSets, archSubDir.getName())) { in validateApkInstallLocked() 1892 private void createOatDirs(List<String> instructionSets, File fromDir) in createOatDirs() argument 1894 for (String instructionSet : instructionSets) { in createOatDirs()
|
D | PackageManagerService.java | 10031 final String[] instructionSets = getAppDexInstructionSets(p.applicationInfo); 10044 pdo.performDexOpt(depPackage, instructionSets, 10053 return pdo.performDexOpt(p, instructionSets, 15563 String resourcePath, String[] instructionSets) { 15564 return new FileInstallArgs(codePath, resourcePath, instructionSets); 15592 /* nullable */ String[] instructionSets; 15596 UserHandle user, String[] instructionSets, 15609 this.instructionSets = instructionSets; 15666 void removeDexFiles(List<String> allCodePaths, String[] instructionSets) { 15668 if (instructionSets == null) { [all …]
|