/art/tools/ |
D | stream-trace-converter.py | 85 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/tools/ahat/etc/ |
D | README.txt | 2 A version of the test-dump hprof generated on Android L, with one of the 6 A version of the test-dump hprof generated on Android O. 9 A version of the test-dump hprof generated on the reference implementation.
|
/art/test/900-hello-plugin/ |
D | load_unload.cc | 33 static jint GetEnvHandler(JavaVMExt* vm ATTRIBUTE_UNUSED, void** new_env, jint version) { in GetEnvHandler() argument 35 if (version != TEST_900_ENV_VERSION_NUMBER) { in GetEnvHandler() 38 printf("GetEnvHandler called with version 0x%x\n", version); in GetEnvHandler()
|
D | expected.txt | 4 GetEnvHandler called with version 0x900fffff
|
/art/test/909-attach-agent/ |
D | interpreter-expected.patch | 2 < version 0x30010000 is not valid!Unable to create env for JVMTI_VERSION_1_0 4 < version 0x30010000 is not valid!Unable to create env for JVMTI_VERSION_1_0
|
D | attach.cc | 85 jint version = 0; in OnAttach() local 86 CHECK_CALL_SUCCESS(env->GetVersionNumber(&version)); in OnAttach() 87 if ((version & JVMTI_VERSION_1) != JVMTI_VERSION_1) { in OnAttach()
|
D | expected.txt | 19 version 0x30010000 is not valid!Unable to create env for JVMTI_VERSION_1_0 22 version 0x30010000 is not valid!Unable to create env for JVMTI_VERSION_1_0
|
/art/test/922-properties/ |
D | expected.txt | 12 "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/tools/wrapagentproperties/ |
D | wrapagentproperties.cc | 51 static jint CreateJvmtiEnv(ProxyJavaVM* vm, void** out_env, jint version); 93 static jint WrapGetEnv(ProxyJavaVM* vm, void** out_env, jint version) { in WrapGetEnv() 94 switch (version) { in WrapGetEnv() 99 return CreateJvmtiEnv(vm, out_env, version); in WrapGetEnv() 101 if ((version & 0x30000000) == 0x30000000) { in WrapGetEnv() 102 LOG(ERROR) << "Version number 0x" << std::hex << version << " looks like a JVMTI " in WrapGetEnv() 106 return vm->real_vm->GetEnv(out_env, version); in WrapGetEnv() 233 static jint CreateJvmtiEnv(ProxyJavaVM* vm, void** out_env, jint version) { in CreateJvmtiEnv() argument 234 jint res = vm->real_vm->GetEnv(out_env, version); in CreateJvmtiEnv()
|
D | README.md | 11 assume you want to use the 64-bit version. 18 * If using `libartd.so`, make sure to use the debug version of jvmti.
|
/art/libdexfile/dex/ |
D | standard_dex_file.cc | 54 const uint8_t* version = &magic[sizeof(kDexMagic)]; in IsVersionValid() local 56 if (memcmp(version, kDexMagicVersions[i], kDexVersionLen) == 0) { in IsVersionValid()
|
D | compact_dex_file.cc | 41 const uint8_t* version = &magic[sizeof(kDexMagic)]; in IsVersionValid() local 42 return memcmp(version, kDexMagicVersion, kDexVersionLen) == 0; in IsVersionValid()
|
/art/test/370-dex-v37/ |
D | info.txt | 1 Print "Hello, World!" with a version 37 dex file.
|
/art/openjdkjvm/ |
D | NOTICE | 12 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/openjdkjvmti/ |
D | NOTICE | 12 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/dt_fd_forward/ |
D | NOTICE | 13 under the terms of the GNU General Public License version 2 only, as 21 version 2 for more details (a copy is included in the LICENSE file that 24 You should have received a copy of the GNU General Public License version
|
/art/test/979-const-method-handle/ |
D | build | 20 ${DX} --dex --min-sdk-version=28 --output=classes.dex classes
|
/art/test/107-int-math2/ |
D | info.txt | 1 A forked and extended version of IntMath from 003-omnibus-opcodes.
|
/art/runtime/ |
D | java_vm_ext.cc | 62 bool JavaVMExt::IsBadJniVersion(int version) { in IsBadJniVersion() argument 64 return version != JNI_VERSION_1_2 && version != JNI_VERSION_1_4 && version != JNI_VERSION_1_6; in IsBadJniVersion() 382 static jint GetEnv(JavaVM* vm, void** env, jint version) { in GetEnv() argument 392 return raw_vm->HandleGetEnv(env, version); in GetEnv() 420 if (JavaVMExt::IsBadJniVersion(args->version)) { in AttachCurrentThreadInternal() 423 << args->version; in AttachCurrentThreadInternal() 499 jint JavaVMExt::HandleGetEnv(/*out*/void** env, jint version) { in HandleGetEnv() argument 501 jint res = hook(this, env, version); in HandleGetEnv() 509 LOG(ERROR) << "Bad JNI version passed to GetEnv: " << version; in HandleGetEnv() 1024 int version = (*jni_on_load)(this, nullptr); in LoadNativeLibrary() local [all …]
|
/art/test/1948-obsolete-const-method-handle/ |
D | build | 23 ${DX} --dex --min-sdk-version=28 --output=classes.dex classes
|
/art/test/984-obsolete-invoke/ |
D | expected.txt | 5 Invoking redefined version of method.
|
/art/test/522-checker-regression-monitor-exit/ |
D | info.txt | 2 The test invokes a synchronized version of Object.hashCode in multiple threads.
|
/art/test/970-iface-super-resolution-gen/ |
D | build | 25 if $JACK -D jack.java.source.version=1.8 -D jack.android.min-api-level=24 2>/dev/null; then
|
/art/test/901-hello-ti-agent/ |
D | basics.cc | 123 jint version = 0; in OnLoad() local 124 CHECK_CALL_SUCCESS(env->GetVersionNumber(&version)); in OnLoad() 125 if ((version & JVMTI_VERSION_1) != JVMTI_VERSION_1) { in OnLoad()
|
/art/test/087-gc-after-link/ |
D | info.txt | 7 This test is a modified version of test 086.
|