Home
last modified time | relevance | path

Searched refs:instructionSet (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
DInstructionSets.java69 for (String instructionSet : instructionSets) { in getDexCodeInstructionSets()
70 dexCodeInstructionSets.add(getDexCodeInstructionSet(instructionSet)); in getDexCodeInstructionSets()
92 final String instructionSet = VMRuntime.getInstructionSet(abi); in getAllInstructionSets() local
93 if (!allInstructionSets.contains(instructionSet)) { in getAllInstructionSets()
94 allInstructionSets.add(instructionSet); in getAllInstructionSets()
DInstaller.java595 public boolean dexopt(String apkPath, int uid, String pkgName, String instructionSet, in dexopt() argument
701 public void moveAb(String packageName, String apkPath, String instructionSet, String outputPath) in moveAb() argument
707 mInstalld.moveAb(packageName, apkPath, instructionSet, outputPath); in moveAb()
885 private static void assertValidInstructionSet(String instructionSet) in assertValidInstructionSet() argument
888 if (VMRuntime.getInstructionSet(abi).equals(instructionSet)) { in assertValidInstructionSet()
892 throw new InstallerException("Invalid instruction set: " + instructionSet); in assertValidInstructionSet()
DPackageAbiHelperImpl.java593 final String instructionSet = in getAdjustedAbiForSharedUser() local
595 if (requiredInstructionSet != null && !requiredInstructionSet.equals(instructionSet)) { in getAdjustedAbiForSharedUser()
601 + " requires " + instructionSet; in getAdjustedAbiForSharedUser()
606 requiredInstructionSet = instructionSet; in getAdjustedAbiForSharedUser()
DOtaDexoptService.java299 String instructionSet, int dexoptNeeded, @Nullable String outputPath, in generatePackageDexopts()
321 encodeParameter(builder, instructionSet); in generatePackageDexopts()
DPackageInstallerSession.java4295 for (String instructionSet : instructionSets) {
4297 mInstaller.createOatDir(packageName, fromDir.getAbsolutePath(), instructionSet);
/frameworks/native/cmds/installd/binder/android/os/
DIInstalld.aidl62 @utf8InCpp String instructionSet, int dexoptNeeded, in dexopt() argument
74 void rmdex(@utf8InCpp String codePath, @utf8InCpp String instructionSet); in rmdex() argument
94 @utf8InCpp String instructionSet); in createOatDir() argument
98 @utf8InCpp String instructionSet, @utf8InCpp String outputPath); in moveAb() argument
100 @utf8InCpp String instructionSet, @nullable @utf8InCpp String outputPath); in deleteOdex() argument
133 @utf8InCpp String instructionSet, @nullable @utf8InCpp String outputPath); in getOdexVisibility() argument
/frameworks/base/core/java/com/android/internal/os/
DZygote.java367 int[] fdsToIgnore, boolean startChildZygote, String instructionSet, String appDataDir, in forkAndSpecialize() argument
375 fdsToIgnore, startChildZygote, instructionSet, appDataDir, isTopApp, in forkAndSpecialize()
397 int[] fdsToClose, int[] fdsToIgnore, boolean startChildZygote, String instructionSet, in nativeForkAndSpecialize() argument
435 boolean startChildZygote, String instructionSet, String appDataDir, boolean isTopApp, in specializeAppProcess() argument
440 niceName, startChildZygote, instructionSet, appDataDir, isTopApp, in specializeAppProcess()
465 boolean startChildZygote, String instructionSet, String appDataDir, boolean isTopApp, in nativeSpecializeAppProcess() argument
1169 boolean isZygote, String instructionSet) { in callPostForkChildHooks() argument
1170 ZygoteHooks.postForkChild(runtimeFlags, isSystemServer, isZygote, instructionSet); in callPostForkChildHooks()
1452 @Nullable String instructionSet, in getMemorySafetyRuntimeFlags() argument
1465 if (instructionSet == null || instructionSet.equals("arm64")) { in getMemorySafetyRuntimeFlags()
DWrapperInit.java108 int targetSdkVersion, String instructionSet, FileDescriptor pipeFd, in execApplication() argument
113 if (VMRuntime.is64BitInstructionSet(instructionSet)) { in execApplication()
/frameworks/native/cmds/installd/
DInstalldNativeService.h137 const std::string& instructionSet, int32_t dexoptNeeded,
148 binder::Status rmdex(const std::string& codePath, const std::string& instructionSet);
174 const std::string& instructionSet);
178 const std::string& instructionSet, const std::string& outputPath);
180 const std::string& instructionSet,
207 const std::string& instructionSet,
DInstalldNativeService.cpp2297 const std::string& instructionSet) { in rmdex() argument
2304 const char* instruction_set = instructionSet.c_str(); in rmdex()
3269 const std::string& instructionSet, int32_t dexoptNeeded, in dexopt() argument
3287 const char* instruction_set = instructionSet.c_str(); in dexopt()
3498 const std::string& instructionSet) { in createOatDir() argument
3505 const char* instruction_set = instructionSet.c_str(); in createOatDir()
3574 const std::string& instructionSet, in moveAb() argument
3583 const char* instruction_set = instructionSet.c_str(); in moveAb()
3592 const std::string& instructionSet, in deleteOdex() argument
3602 const char* instruction_set = instructionSet.c_str(); in deleteOdex()
[all …]
/frameworks/base/core/java/android/os/
DZygoteProcess.java345 @Nullable String instructionSet, in start() argument
368 abi, instructionSet, appDataDir, invokeWith, /*startChildZygote=*/ false, in start()
630 @Nullable String instructionSet, in startViaZygote() argument
691 if (instructionSet != null) { in startViaZygote()
692 argsForZygote.add("--instruction-set=" + instructionSet); in startViaZygote()
1302 String instructionSet, in startChildZygote() argument
1320 abi, instructionSet, null /* appDataDir */, null /* invokeWith */, in startChildZygote()
DProcess.java730 @Nullable String instructionSet, in start() argument
747 abi, instructionSet, appDataDir, invokeWith, packageName, in start()
762 @Nullable String instructionSet, in startWebView() argument
772 abi, instructionSet, appDataDir, invokeWith, packageName, in startWebView()
/frameworks/base/core/java/com/android/internal/content/
DNativeLibraryHelper.java335 final String instructionSet = VMRuntime.getInstructionSet(supportedAbi); in copyNativeBinariesForSupportedAbi() local
338 subDir = new File(libraryRoot, instructionSet); in copyNativeBinariesForSupportedAbi()
/frameworks/base/services/core/java/com/android/server/am/
DProcessList.java2043 String instructionSet = null;
2047 instructionSet = VMRuntime.getInstructionSet(requiredAbi);
2052 app.setInstructionSet(instructionSet);
2068 definingAppInfo, app.processInfo, instructionSet, mPlatformCompat);
2085 instructionSet, invokeWith, startUptime, startElapsedTime);
2129 String seInfo, String requiredAbi, String instructionSet, String invokeWith,
2163 requiredAbi, instructionSet, invokeWith, startSeq));
2170 requiredAbi, instructionSet, invokeWith, startUptime);
2191 final int mountExternal, final String requiredAbi, final String instructionSet,
2197 mountExternal, app.getSeInfo(), requiredAbi, instructionSet, invokeWith,
[all …]
DProcessRecord.java809 void setInstructionSet(String instructionSet) { in setInstructionSet() argument
810 mInstructionSet = instructionSet; in setInstructionSet()