Searched defs:instructionSets (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
H A DInstructionSets.java82 public static String[] getDexCodeInstructionSets(String[] instructionSets) { argument
83 ArraySet<String> dexCodeInstructionSets = new ArraySet<String>(instructionSets.length);
84 for (String instructionSet : instructionSets) {
H A DPackageDexOptimizer.java73 int performDexOpt(PackageParser.Package pkg, String[] instructionSets, argument
89 return performDexOptLI(pkg, instructionSets, forceDex, defer, done);
100 final String[] instructionSets = targetInstructionSets != null ?
106 performDexOptLibsLI(pkg.usesLibraries, instructionSets, forceDex, defer, done);
109 performDexOptLibsLI(pkg.usesOptionalLibraries, instructionSets, forceDex, defer,
127 final String[] dexCodeInstructionSets = getDexCodeInstructionSets(instructionSets);
238 private void performDexOptLibsLI(ArrayList<String> libs, String[] instructionSets, argument
244 performDexOptLI(libPkg, instructionSets, forceDex, defer, done);
H A DInstaller.java329 String fwdLockApkPath, String asecPath, String[] instructionSets, PackageStats pStats) {
331 instructionSets, pStats);
335 String libDirPath, String fwdLockApkPath, String asecPath, String[] instructionSets,
337 for (String instructionSet : instructionSets) {
364 builder.append(instructionSets[0]);
328 getSizeInfo(String pkgName, int persona, String apkPath, String libDirPath, String fwdLockApkPath, String asecPath, String[] instructionSets, PackageStats pStats) argument
334 getSizeInfo(String uuid, String pkgName, int persona, String apkPath, String libDirPath, String fwdLockApkPath, String asecPath, String[] instructionSets, PackageStats pStats) argument
H A DPackageInstallerSession.java720 final String[] instructionSets = InstructionSets.getAllDexCodeInstructionSets();
723 if (!ArrayUtils.contains(instructionSets, archSubDir.getName())) {
828 private void createOatDirs(List<String> instructionSets, File fromDir) { argument
829 for (String instructionSet : instructionSets) {
H A DPackageManagerService.java6252 final String[] instructionSets = new String[] { targetInstructionSet };
6253 int result = mPackageDexOptimizer.performDexOpt(p, instructionSets,
6298 final String[] instructionSets = new String[] {
6300 final int res = mPackageDexOptimizer.performDexOpt(pkg, instructionSets,
10869 String resourcePath, String[] instructionSets) {
10886 return new AsecInstallArgs(codePath, instructionSets,
10889 return new FileInstallArgs(codePath, resourcePath, instructionSets);
10912 /* nullable */ String[] instructionSets; field in class:PackageManagerService.InstallArgs
10916 ManifestDigest manifestDigest, UserHandle user, String[] instructionSets,
10926 this.instructionSets
10868 createInstallArgsForExisting(int installFlags, String codePath, String resourcePath, String[] instructionSets) argument
10914 InstallArgs(OriginInfo origin, MoveInfo move, IPackageInstallObserver2 observer, int installFlags, String installerPackageName, String volumeUuid, ManifestDigest manifestDigest, UserHandle user, String[] instructionSets, String abiOverride, String[] installGrantPermissions) argument
10983 removeDexFiles(List<String> allCodePaths, String[] instructionSets) argument
11029 FileInstallArgs(String codePath, String resourcePath, String[] instructionSets) argument
11252 AsecInstallArgs(String fullCodePath, String[] instructionSets, boolean isExternal, boolean isForwardLocked) argument
11270 AsecInstallArgs(String cid, String[] instructionSets, boolean isForwardLocked) argument
[all...]

Completed in 92 milliseconds