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 | 93 String[] instructionSets, boolean checkProfiles, String targetCompilationFilter) { in performDexOpt() argument 101 return performDexOptLI(pkg, sharedLibraries, instructionSets, checkProfiles, in performDexOpt() 130 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo); in dumpDexoptState() local 131 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets); in dumpDexoptState() 154 final String[] instructionSets = targetInstructionSets != null ? in performDexOptLI() local 194 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets); in performDexOptLI()
|
D | OtaDexoptService.java | 177 final String[] instructionSets = getAppDexInstructionSets(pkg.applicationInfo); in moveAbArtifacts() local 179 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets); in moveAbArtifacts()
|
D | PackageInstallerSession.java | 807 final String[] instructionSets = InstructionSets.getAllDexCodeInstructionSets(); in validateInstallLocked() local 810 if (!ArrayUtils.contains(instructionSets, archSubDir.getName())) { in validateInstallLocked() 920 private void createOatDirs(List<String> instructionSets, File fromDir) in createOatDirs() argument 922 for (String instructionSet : instructionSets) { in createOatDirs()
|
D | PackageManagerService.java | 7448 final String[] instructionSets = getAppDexInstructionSets(p.applicationInfo); 7453 pdo.performDexOpt(depPackage, null /* sharedLibraries */, instructionSets, 7458 return pdo.performDexOpt(p, p.usesLibraryFiles, instructionSets, checkProfiles, 13165 String resourcePath, String[] instructionSets) { 13182 return new AsecInstallArgs(codePath, instructionSets, 13185 return new FileInstallArgs(codePath, resourcePath, instructionSets); 13211 /* nullable */ String[] instructionSets; 13215 UserHandle user, String[] instructionSets, 13225 this.instructionSets = instructionSets; 13287 private void removeDexFiles(List<String> allCodePaths, String[] instructionSets) { [all …]
|