Searched refs:p_env (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dcheck_jni.cc2040 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) { argument
2042 sc.Check(true, "vpp", vm, p_env, thr_args);
2043 return CHECK_JNI_EXIT("I", BaseVm(vm)->AttachCurrentThread(vm, p_env, thr_args));
2046 static jint AttachCurrentThreadAsDaemon(JavaVM* vm, JNIEnv** p_env, void* thr_args) { argument
2048 sc.Check(true, "vpp", vm, p_env, thr_args);
2049 return CHECK_JNI_EXIT("I", BaseVm(vm)->AttachCurrentThreadAsDaemon(vm, p_env, thr_args));
H A Djni_internal.cc402 static jint JII_AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* raw_args, bool as_daemon) { argument
403 if (vm == NULL || p_env == NULL) {
410 *p_env = self->GetJniEnv();
437 *p_env = NULL;
440 *p_env = Thread::Current()->GetJniEnv();
2885 extern "C" jint JNI_CreateJavaVM(JavaVM** p_vm, JNIEnv** p_env, void* vm_args) { argument
2908 *p_env = Thread::Current()->GetJniEnv();
2940 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) { argument
2941 return JII_AttachCurrentThread(vm, p_env, thr_args, false);
2944 static jint AttachCurrentThreadAsDaemon(JavaVM* vm, JNIEnv** p_env, voi argument
[all...]

Completed in 351 milliseconds