Home
last modified time | relevance | path

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

/dalvik/vm/
DJni.cpp2805 JavaVMAttachArgs argsCopy; in attachThread() local
2808 argsCopy.version = JNI_VERSION_1_2; in attachThread()
2809 argsCopy.name = NULL; in attachThread()
2810 argsCopy.group = (jobject) dvmGetMainThreadGroup(); in attachThread()
2814 argsCopy.version = args->version; in attachThread()
2815 argsCopy.name = args->name; in attachThread()
2817 argsCopy.group = (jobject) dvmDecodeIndirectRef(NULL, args->group); in attachThread()
2819 argsCopy.group = (jobject) dvmGetMainThreadGroup(); in attachThread()
2823 bool result = dvmAttachCurrentThread(&argsCopy, isDaemon); in attachThread()