Searched refs:thr_args (Results 1 – 2 of 2) sorted by relevance
/art/runtime/ |
D | check_jni.cc | 2033 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) { in AttachCurrentThread() argument 2035 sc.Check(true, "vpp", vm, p_env, thr_args); in AttachCurrentThread() 2036 return CHECK_JNI_EXIT("I", BaseVm(vm)->AttachCurrentThread(vm, p_env, thr_args)); in AttachCurrentThread() 2039 static jint AttachCurrentThreadAsDaemon(JavaVM* vm, JNIEnv** p_env, void* thr_args) { in AttachCurrentThreadAsDaemon() argument 2041 sc.Check(true, "vpp", vm, p_env, thr_args); in AttachCurrentThreadAsDaemon() 2042 return CHECK_JNI_EXIT("I", BaseVm(vm)->AttachCurrentThreadAsDaemon(vm, p_env, thr_args)); in AttachCurrentThreadAsDaemon()
|
D | jni_internal.cc | 3069 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) { in AttachCurrentThread() argument 3070 return JII_AttachCurrentThread(vm, p_env, thr_args, false); in AttachCurrentThread() 3073 static jint AttachCurrentThreadAsDaemon(JavaVM* vm, JNIEnv** p_env, void* thr_args) { in AttachCurrentThreadAsDaemon() argument 3074 return JII_AttachCurrentThread(vm, p_env, thr_args, true); in AttachCurrentThreadAsDaemon()
|