Home
last modified time | relevance | path

Searched refs:new_env (Results 1 – 7 of 7) sorted by relevance

/art/test/1941-dispose-stress/
Ddispose_stress.cc51 jvmtiEnv* new_env = nullptr; in Java_art_Test1941_AllocEnv() local
52 if (vm->GetEnv(reinterpret_cast<void**>(&new_env), JVMTI_VERSION_1_0) != 0) { in Java_art_Test1941_AllocEnv()
57 return static_cast<jlong>(reinterpret_cast<intptr_t>(new_env)); in Java_art_Test1941_AllocEnv()
/art/test/1909-per-agent-tls/
Dagent_tls.cc65 jvmtiEnv* new_env = nullptr; in Java_art_Test1909_newJvmtiEnv() local
66 if (vm->GetEnv(reinterpret_cast<void**>(&new_env), JVMTI_VERSION_1_0) != 0) { in Java_art_Test1909_newJvmtiEnv()
71 return static_cast<jlong>(reinterpret_cast<intptr_t>(new_env)); in Java_art_Test1909_newJvmtiEnv()
/art/test/900-hello-plugin/
Dload_unload.cc33 static jint GetEnvHandler(JavaVMExt* vm ATTRIBUTE_UNUSED, void** new_env, jint version) { in GetEnvHandler() argument
39 *new_env = reinterpret_cast<void*>(ENV_VALUE); in GetEnvHandler()
/art/tools/jvmti-agents/field-null-percent/
Dcheck-null-fields.py92 new_env = dict(os.environ)
93 new_env["ANDROID_SERIAL"] = device.serial
94 p = subprocess.Popen([device.adb_path, "jdwp"], env=new_env, stdout=subprocess.PIPE)
/art/test/1900-track-alloc/
Dalloc.cc106 jvmtiEnv* new_env = nullptr; in Java_art_Test1900_newJvmtiEnv() local
107 if (vm->GetEnv(reinterpret_cast<void**>(&new_env), JVMTI_VERSION_1_0) != 0) { in Java_art_Test1900_newJvmtiEnv()
112 return static_cast<jlong>(reinterpret_cast<intptr_t>(new_env)); in Java_art_Test1900_newJvmtiEnv()
/art/tools/jvmti-agents/field-counts/
Dcount-fields.py92 new_env = dict(os.environ)
93 new_env["ANDROID_SERIAL"] = device.serial
94 p = subprocess.Popen([device.adb_path, "jdwp"], env=new_env, stdout=subprocess.PIPE)
/art/runtime/jni/
Djava_vm_ext.h43 using GetEnvHook = jint (*)(JavaVMExt* vm, /*out*/void** new_env, jint version);