Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DInstaller.java142 public void dexopt(String apkPath, int uid, String instructionSet, int dexoptNeeded, in dexopt() argument
145 assertValidInstructionSet(instructionSet); in dexopt()
146 mInstaller.dexopt(apkPath, uid, instructionSet, dexoptNeeded, dexFlags, in dexopt()
150 public void dexopt(String apkPath, int uid, String pkgName, String instructionSet, in dexopt() argument
154 assertValidInstructionSet(instructionSet); in dexopt()
155 mInstaller.dexopt(apkPath, uid, pkgName, instructionSet, dexoptNeeded, in dexopt()
173 public void rmdex(String codePath, String instructionSet) throws InstallerException { in rmdex() argument
174 assertValidInstructionSet(instructionSet); in rmdex()
175 mInstaller.execute("rmdex", codePath, instructionSet); in rmdex()
199 public void markBootComplete(String instructionSet) throws InstallerException { in markBootComplete() argument
[all …]
DInstructionSets.java84 for (String instructionSet : instructionSets) { in getDexCodeInstructionSets()
85 dexCodeInstructionSets.add(getDexCodeInstructionSet(instructionSet)); in getDexCodeInstructionSets()
107 final String instructionSet = VMRuntime.getInstructionSet(abi); in getAllInstructionSets() local
108 if (!allInstructionSets.contains(instructionSet)) { in getAllInstructionSets()
109 allInstructionSets.add(instructionSet); in getAllInstructionSets()
DPackageDexOptimizer.java136 for (String instructionSet : dexCodeInstructionSets) { in dumpDexoptState()
137 pw.println("Instruction Set: " + instructionSet); in dumpDexoptState()
142 status = DexFile.getDexFileStatus(path, instructionSet); in dumpDexoptState()
DPackageInstallerSession.java944 for (String instructionSet : instructionSets) { in createOatDirs()
946 mPm.mInstaller.createOatDir(fromDir.getAbsolutePath(), instructionSet); in createOatDirs() local
DPackageManagerService.java9253 final String instructionSet = VMRuntime.getInstructionSet(ps.primaryCpuAbiString); in adjustCpuAbisForSharedUserLPw() local
9254 … if (requiredInstructionSet != null && !instructionSet.equals(requiredInstructionSet)) { in adjustCpuAbisForSharedUserLPw()
9260 + " requires " + instructionSet; in adjustCpuAbisForSharedUserLPw()
9265 requiredInstructionSet = instructionSet; in adjustCpuAbisForSharedUserLPw()
/frameworks/base/core/java/com/android/internal/os/
DZygote.java93 String instructionSet, String appDataDir) { in forkAndSpecialize() argument
97 instructionSet, appDataDir); in forkAndSpecialize()
111 String instructionSet, String appDataDir); in nativeForkAndSpecialize() argument
159 String instructionSet) { in callPostForkChildHooks() argument
160 VM_HOOKS.postForkChild(debugFlags, isSystemServer, instructionSet); in callPostForkChildHooks()
DInstallerConnection.java137 public void dexopt(String apkPath, int uid, String instructionSet, int dexoptNeeded, in dexopt() argument
140 dexopt(apkPath, uid, "*", instructionSet, dexoptNeeded, null /*outputPath*/, dexFlags, in dexopt()
144 public void dexopt(String apkPath, int uid, String pkgName, String instructionSet, in dexopt() argument
151 instructionSet, in dexopt()
DWrapperInit.java100 int targetSdkVersion, String instructionSet, FileDescriptor pipeFd, in execApplication() argument
105 if (VMRuntime.is64BitInstructionSet(instructionSet)) { in execApplication()
DZygoteConnection.java227 parsedArgs.niceName, fdsToClose, parsedArgs.instructionSet, in runOnce()
368 String instructionSet; field in ZygoteConnection.Arguments
531 instructionSet = arg.substring(arg.indexOf('=') + 1); in parseArgs()
DZygoteInit.java584 final String instructionSet = VMRuntime.getRuntime().vmInstructionSet(); in performSystemServerDexOpt() local
596 classPathElement, instructionSet, "speed", in performSystemServerDexOpt()
613 installer.dexopt(classPathElement, Process.SYSTEM_UID, instructionSet, in performSystemServerDexOpt()
/frameworks/base/core/jni/
Dcom_android_internal_os_Zygote.cpp450 jstring instructionSet, jstring dataDir) { in ForkAndSpecializeCommon() argument
514 bool use_native_bridge = !is_system_server && (instructionSet != NULL) in ForkAndSpecializeCommon()
517 ScopedUtfChars isa_string(env, instructionSet); in ForkAndSpecializeCommon()
558 ScopedUtfChars isa_string(env, instructionSet); in ForkAndSpecializeCommon()
628 is_system_server, instructionSet); in ForkAndSpecializeCommon()
656 jintArray fdsToClose, jstring instructionSet, jstring appDataDir) { in com_android_internal_os_Zygote_nativeForkAndSpecialize() argument
691 se_name, false, fdsToClose, instructionSet, appDataDir); in com_android_internal_os_Zygote_nativeForkAndSpecialize()
/frameworks/base/core/java/android/os/
DProcess.java517 String instructionSet, in start() argument
523 abi, instructionSet, appDataDir, zygoteArgs); in start()
649 String instructionSet, in startViaZygote() argument
721 if (instructionSet != null) { in startViaZygote()
722 argsForZygote.add("--instruction-set=" + instructionSet); in startViaZygote()
/frameworks/base/core/java/com/android/internal/content/
DNativeLibraryHelper.java306 final String instructionSet = VMRuntime.getInstructionSet(abiList[abi]); in copyNativeBinariesForSupportedAbi() local
309 final File isaSubdir = new File(libraryRoot, instructionSet); in copyNativeBinariesForSupportedAbi()
/frameworks/base/services/core/java/com/android/server/storage/
DDeviceStorageMonitorService.java351 for (String instructionSet : InstructionSets.getAllDexCodeInstructionSets()) { in isBootImageOnDisk()
352 if (!VMRuntime.isBootClassPathOnDisk(instructionSet)) { in isBootImageOnDisk()
/frameworks/base/services/core/java/com/android/server/am/
DProcessRecord.java81 String instructionSet; // The instruction set this process was launched with field in ProcessRecord
225 pw.print(" instructionSet="); pw.println(instructionSet); in dump()
DActivityManagerService.java3790 String instructionSet = null; in startProcessLocked() local
3792 instructionSet = VMRuntime.getInstructionSet(app.info.primaryCpuAbi); in startProcessLocked()
3797 app.instructionSet = instructionSet; in startProcessLocked()
3808 app.info.targetSdkVersion, app.info.seinfo, requiredAbi, instructionSet, in startProcessLocked()
6801 final String instructionSet = VMRuntime.getInstructionSet(abi); in finishBooting() local
6802 if (!completedIsas.contains(instructionSet)) { in finishBooting()
6809 completedIsas.add(instructionSet); in finishBooting()
/frameworks/base/core/java/android/app/
DActivityManagerNative.java4532 IUiAutomationConnection connection, int userId, String instructionSet) in startInstrumentation() argument
4544 data.writeString(instructionSet); in startInstrumentation()