Home
last modified time | relevance | path

Searched refs:version (Results 1 – 25 of 52) sorted by relevance

123

/art/tools/
Dstream-trace-converter.py85 version = ReadShortLE(input)
86 if (version & 0xf0) != 0xf0:
87 raise MyException("Does not seem to be a streaming trace: %d." % version)
88 version = version ^ 0xf0
90 if version != 3:
93 WriteShortLE(body, version)
102 if version == 1:
104 elif version == 2:
/art/test/900-hello-plugin/
Dload_unload.cc32 static jint GetEnvHandler(JavaVMExt* vm ATTRIBUTE_UNUSED, void** new_env, jint version) { in GetEnvHandler() argument
34 if (version != TEST_900_ENV_VERSION_NUMBER) { in GetEnvHandler()
37 printf("GetEnvHandler called with version 0x%x\n", version); in GetEnvHandler()
Dexpected.txt4 GetEnvHandler called with version 0x900fffff
/art/test/909-attach-agent/
Dattach.cc68 jint version = 0; in OnAttach() local
69 CHECK_CALL_SUCCESS(env->GetVersionNumber(&version)); in OnAttach()
70 if ((version & JVMTI_VERSION_1) != JVMTI_VERSION_1) { in OnAttach()
/art/test/922-properties/
Dexpected.txt12 "java.vm.version": OK
20 "java.class.version": OK
32 "java.specification.version": OK
38 "java.version": OK
44 "java.vm.specification.version": OK
/art/runtime/
Djava_vm_ext.cc56 bool JavaVMExt::IsBadJniVersion(int version) { in IsBadJniVersion() argument
58 return version != JNI_VERSION_1_2 && version != JNI_VERSION_1_4 && version != JNI_VERSION_1_6; in IsBadJniVersion()
348 static jint GetEnv(JavaVM* vm, void** env, jint version) { in GetEnv() argument
358 return raw_vm->HandleGetEnv(env, version); in GetEnv()
386 if (JavaVMExt::IsBadJniVersion(args->version)) { in AttachCurrentThreadInternal()
389 << args->version; in AttachCurrentThreadInternal()
461 jint JavaVMExt::HandleGetEnv(/*out*/void** env, jint version) { in HandleGetEnv() argument
463 jint res = hook(this, env, version); in HandleGetEnv()
471 LOG(ERROR) << "Bad JNI version passed to GetEnv: " << version; in HandleGetEnv()
901 int version = (*jni_on_load)(this, nullptr); in LoadNativeLibrary() local
[all …]
Djava_vm_ext.h42 using GetEnvHook = jint (*)(JavaVMExt* vm, /*out*/void** new_env, jint version);
194 jint HandleGetEnv(/*out*/void** env, jint version);
198 static bool IsBadJniVersion(int version);
Djni_env_ext.cc53 jint JNIEnvExt::GetEnvHandler(JavaVMExt* vm, /*out*/void** env, jint version) { in GetEnvHandler() argument
58 if (JavaVMExt::IsBadJniVersion(version) && version != JNI_VERSION_1_1) { in GetEnvHandler()
Djni_env_ext.h63 static jint GetEnvHandler(JavaVMExt* vm, /*out*/void** out, jint version);
/art/runtime/openjdkjvmti/
DNOTICE12 under the terms of the GNU General Public License version 2 only, as
20 version 2 for more details (a copy is included in the LICENSE file that
23 You should have received a copy of the GNU General Public License version
/art/runtime/openjdkjvm/
DNOTICE12 under the terms of the GNU General Public License version 2 only, as
20 version 2 for more details (a copy is included in the LICENSE file that
23 You should have received a copy of the GNU General Public License version
/art/test/370-dex-v37/
Dinfo.txt1 Print "Hello, World!" with a version 37 dex file.
/art/test/107-int-math2/
Dinfo.txt1 A forked and extended version of IntMath from 003-omnibus-opcodes.
/art/test/901-hello-ti-agent/
Dbasics.cc112 jint version = 0; in OnLoad() local
113 CHECK_CALL_SUCCESS(env->GetVersionNumber(&version)); in OnLoad()
114 if ((version & JVMTI_VERSION_1) != JVMTI_VERSION_1) { in OnLoad()
/art/test/984-obsolete-invoke/
Dexpected.txt5 Invoking redefined version of method.
/art/test/522-checker-regression-monitor-exit/
Dinfo.txt2 The test invokes a synchronized version of Object.hashCode in multiple threads.
/art/test/970-iface-super-resolution-gen/
Dbuild25 if $JACK -D jack.java.source.version=1.8 -D jack.android.min-api-level=24 2>/dev/null; then
/art/test/087-gc-after-link/
Dinfo.txt7 This test is a modified version of test 086.
/art/test/952-invoke-custom/generator/
Dbuild-test.sh67 …read.kind=fixed -D sched.runner.thread.fixed.count=4 -D jack.java.source.version=1.7 -D jack.andro…
69 …read.kind=fixed -D sched.runner.thread.fixed.count=4 -D jack.java.source.version=1.7 -D jack.andro…
/art/dexdump/
DAndroid.bp15 // TODO(ajcbik): rename dexdump2 into dexdump when Dalvik version is removed
/art/dalvikvm/
DAndroid.bp61 // Create symlink for the primary version target.
/art/tools/ahat/
DREADME.txt24 * Include ahat version and hprof file in the menu at the top of the page?
29 * Show version number with --version.
/art/tools/dmtracedump/
Dcreatetesttrace.cc38 int16_t version; member
345 header.version = versionNumber; in writeDataHeader()
347 write2LE(dataFp, header.version); in writeDataHeader()
/art/sigchainlib/
DAndroid.bp37 // Create a dummy version of libsigchain which expose the necessary symbols
/art/test/005-annotations/src/android/test/anno/
DTestAnnotations.java294 public static void setTargetSdkVersion(Object runtime, int version) throws Exception { in setTargetSdkVersion() argument
295 setTargetSdkVersionMethod.invoke(runtime, version); in setTargetSdkVersion()

123