Searched refs:new_env (Results 1 – 8 of 8) sorted by relevance
/aosp12/art/test/1941-dispose-stress/ |
H A D | dispose_stress.cc | 51 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()
|
/aosp12/art/test/1909-per-agent-tls/ |
H A D | agent_tls.cc | 65 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()
|
/aosp12/build/soong/python/scripts/ |
H A D | stub_template_host.txt | 46 new_env = {} 67 new_env[PYTHON_PATH] = new_python_path 81 os.environ.update(new_env)
|
/aosp12/art/test/900-hello-plugin/ |
H A D | load_unload.cc | 33 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()
|
/aosp12/art/test/1900-track-alloc/ |
H A D | alloc.cc | 106 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()
|
/aosp12/art/tools/jvmti-agents/field-null-percent/ |
H A D | check-null-fields.py | 92 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)
|
/aosp12/art/tools/jvmti-agents/field-counts/ |
H A D | count-fields.py | 92 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)
|
/aosp12/art/runtime/jni/ |
H A D | java_vm_ext.h | 44 using GetEnvHook = jint (*)(JavaVMExt* vm, /*out*/void** new_env, jint version);
|