Home
last modified time | relevance | path

Searched refs:thr_args (Results 1 – 3 of 3) sorted by relevance

/dalvik/vm/
DJni.c2931 static jint attachThread(JavaVM* vm, JNIEnv** p_env, void* thr_args, in attachThread() argument
2934 JavaVMAttachArgs* args = (JavaVMAttachArgs*) thr_args; in attachThread()
2959 (thr_args == NULL) ? "(unknown)" : args->name); in attachThread()
3011 static jint AttachCurrentThread(JavaVM* vm, JNIEnv** p_env, void* thr_args) in AttachCurrentThread() argument
3013 return attachThread(vm, p_env, thr_args, false); in AttachCurrentThread()
3020 void* thr_args) in AttachCurrentThreadAsDaemon() argument
3022 return attachThread(vm, p_env, thr_args, true); in AttachCurrentThreadAsDaemon()
DCheckJni.c2077 void* thr_args) in Check_AttachCurrentThread() argument
2081 result = BASE_VM(vm)->AttachCurrentThread(vm, p_env, thr_args); in Check_AttachCurrentThread()
2087 void* thr_args) in Check_AttachCurrentThreadAsDaemon() argument
2091 result = BASE_VM(vm)->AttachCurrentThreadAsDaemon(vm, p_env, thr_args); in Check_AttachCurrentThreadAsDaemon()
/dalvik/libnativehelper/include/nativehelper/
Djni.h1057 jint AttachCurrentThread(JNIEnv** p_env, void* thr_args) in AttachCurrentThread()
1058 { return functions->AttachCurrentThread(this, p_env, thr_args); } in AttachCurrentThread()
1063 jint AttachCurrentThreadAsDaemon(JNIEnv** p_env, void* thr_args) in AttachCurrentThreadAsDaemon()
1064 { return functions->AttachCurrentThreadAsDaemon(this, p_env, thr_args); } in AttachCurrentThreadAsDaemon()