Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DInstructionSets.java70 public static String[] getDexCodeInstructionSets(String[] instructionSets) { in getDexCodeInstructionSets() argument
71 ArraySet<String> dexCodeInstructionSets = new ArraySet<String>(instructionSets.length); in getDexCodeInstructionSets()
72 for (String instructionSet : instructionSets) { in getDexCodeInstructionSets()
H A DPackageDexOptimizer.java182 String[] instructionSets, CompilerStats.PackageStats packageStats, in performDexOpt() argument
198 return performDexOptLI(pkg, pkgSetting, instructionSets, in performDexOpt()
218 final String[] instructionSets = targetInstructionSets != null ? in performDexOptLI() local
222 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets); in performDexOptLI()
594 final String[] instructionSets = getAppDexInstructionSets( in dumpDexoptState() local
597 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets); in dumpDexoptState()
H A DOtaDexoptService.java402 final String[] instructionSets = getAppDexInstructionSets( in moveAbArtifacts() local
407 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets); in moveAbArtifacts()
H A DPackageInstallerSession.java3131 final String[] instructionSets = InstructionSets.getAllDexCodeInstructionSets(); in validateApkInstallLocked() local
3134 if (!ArrayUtils.contains(instructionSets, archSubDir.getName())) { in validateApkInstallLocked()
3529 private void createOatDirs(List<String> instructionSets, File fromDir) in createOatDirs() argument
3531 for (String instructionSet : instructionSets) { in createOatDirs()
H A DPackageManagerService.java13024 final String[] instructionSets = getAppDexInstructionSets( in performDexOptInternalWithDependenciesLI() local
13041 pdo.performDexOpt(depPackage, depPackageSetting, instructionSets, in performDexOptInternalWithDependenciesLI()
13051 return pdo.performDexOpt(p, pkgSetting, instructionSets, in performDexOptInternalWithDependenciesLI()
18652 return new FileInstallArgs(codePath, instructionSets); in createInstallArgsForExisting()
18683 /* nullable */ String[] instructionSets; field in InstallArgs
18687 UserHandle user, String[] instructionSets, in InstallArgs() argument
18701 this.instructionSets = instructionSets; in InstallArgs()
18771 void removeDexFiles(List<String> allCodePaths, String[] instructionSets) { in removeDexFiles() argument
18773 if (instructionSets == null) { in removeDexFiles()
18809 FileInstallArgs(String codePath, String[] instructionSets) { in FileInstallArgs() argument
[all …]
/aosp12/frameworks/base/services/core/java/com/android/server/pm/dex/
H A DArtPackageInfo.java34 List<String> instructionSets, in ArtPackageInfo() argument
38 mInstructionSets = instructionSets; in ArtPackageInfo()