HomeSort by relevance Sort by last modified time
    Searched defs:instructionSet (Results 1 - 10 of 10) sorted by null

  /art/test/118-noimage-dex2oat/src/
Main.java 22 String instructionSet = VMRuntime.getCurrentInstructionSet();
23 boolean isBootClassPathOnDisk = VMRuntime.isBootClassPathOnDisk(instructionSet);
66 public static boolean isBootClassPathOnDisk(String instructionSet) throws Exception {
67 return (boolean) isBootClassPathOnDiskMethod.invoke(null, instructionSet);
  /libcore/libart/src/main/java/dalvik/system/
VMRuntime.java 322 final String instructionSet = ABI_TO_INSTRUCTION_SET_MAP.get(abi);
323 if (instructionSet == null) {
327 return instructionSet;
330 public static boolean is64BitInstructionSet(String instructionSet) {
331 return "arm64".equals(instructionSet) ||
332 "x86_64".equals(instructionSet) ||
333 "mips64".equals(instructionSet);
345 public static native boolean isBootClassPathOnDisk(String instructionSet);
  /frameworks/base/core/java/com/android/internal/content/
NativeLibraryHelper.java 298 final String instructionSet = VMRuntime.getInstructionSet(abiList[abi]);
301 final File isaSubdir = new File(libraryRoot, instructionSet);
  /frameworks/base/core/java/com/android/internal/os/
ZygoteConnection.java 248 parsedArgs.niceName, fdsToClose, parsedArgs.instructionSet,
405 String instructionSet;
569 instructionSet = arg.substring(arg.indexOf('=') + 1);
    [all...]
ZygoteInit.java 554 final String instructionSet = VMRuntime.getRuntime().vmInstructionSet();
558 final byte dexopt = DexFile.isDexOptNeededInternal(classPathElement, "*", instructionSet,
561 installer.dexopt(classPathElement, Process.SYSTEM_UID, false, instructionSet);
563 installer.patchoat(classPathElement, Process.SYSTEM_UID, false, instructionSet);
  /frameworks/base/services/core/java/com/android/server/am/
ProcessRecord.java 69 String instructionSet; // The instruction set this process was launched with
199 pw.print(" instructionSet="); pw.println(instructionSet);
ActivityManagerService.java     [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
PackageManagerService.java     [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 

Completed in 1380 milliseconds