Home
last modified time | relevance | path

Searched refs:is64Bit (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/services/core/java/com/android/server/webkit/
DWebViewUpdateService.java86 public void notifyRelroCreationCompleted(boolean is64Bit, boolean success) { in notifyRelroCreationCompleted() argument
96 if (is64Bit) { in notifyRelroCreationCompleted()
109 public void waitForRelroCreationCompleted(boolean is64Bit) { in waitForRelroCreationCompleted() argument
120 boolean relroReady = (is64Bit ? mRelroReady64Bit : mRelroReady32Bit); in waitForRelroCreationCompleted()
128 relroReady = (is64Bit ? mRelroReady64Bit : mRelroReady32Bit); in waitForRelroCreationCompleted()
/frameworks/base/core/java/android/webkit/
DIWebViewUpdateService.aidl28 void notifyRelroCreationCompleted(boolean is64Bit, boolean success); in notifyRelroCreationCompleted() argument
34 void waitForRelroCreationCompleted(boolean is64Bit); in waitForRelroCreationCompleted() argument
DWebViewFactory.java299 private static void createRelroFile(final boolean is64Bit, String[] nativeLibraryPaths) { in createRelroFile() argument
301 is64Bit ? Build.SUPPORTED_64_BIT_ABIS[0] : Build.SUPPORTED_32_BIT_ABIS[0]; in createRelroFile()
309 getUpdateService().notifyRelroCreationCompleted(is64Bit, false); in createRelroFile()
337 boolean is64Bit = VMRuntime.getRuntime().is64Bit(); in main()
343 Log.v(LOGTAG, "RelroFileCreator (64bit = " + is64Bit + "), " + in main()
357 getUpdateService().notifyRelroCreationCompleted(is64Bit, result); in main()
377 getUpdateService().waitForRelroCreationCompleted(VMRuntime.getRuntime().is64Bit()); in loadNativeLibrary()
/frameworks/base/core/java/android/os/
DBuild.java128 if (VMRuntime.getRuntime().is64Bit()) {
/frameworks/rs/
DrsFileA3D.cpp324 uint32_t is64Bit = 0; in writeFile() local
325 headerStream.addU32(is64Bit); in writeFile()
/frameworks/base/core/java/android/ddm/
DDdmHandleHello.java132 vmRuntime.is64Bit() ? "64-bit" : "32-bit"; in handleHELO()
/frameworks/compile/slang/
Dslang_rs_context.h133 inline bool is64Bit() const { in is64Bit() function
Dslang_rs_export_type.cpp1024 if (EPT->isRSObjectType() && EPT->getRSContext()->is64Bit()) { in GetSizeInBits()
1101 if (getRSContext()->is64Bit()) { in convertToLLVMType()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java5826 pkg.applicationInfo.primaryCpuAbi = VMRuntime.getRuntime().is64Bit() ? in scanPackageDirtyLI()
6503 final boolean is64Bit = VMRuntime.is64BitInstructionSet( in setNativeLibraryPaths()
6510 final String libDir = is64Bit ? LIB64_DIR_NAME : LIB_DIR_NAME; in setNativeLibraryPaths()
6515 final String secondaryLibDir = is64Bit ? LIB_DIR_NAME : LIB64_DIR_NAME; in setNativeLibraryPaths()