Lines Matching refs:group
240 static void threadExitUncaughtException(Thread* thread, Object* group);
1734 static void threadExitUncaughtException(Thread* self, Object* group) in threadExitUncaughtException() argument
1742 self->threadId, group); in threadExitUncaughtException()
1743 assert(group != NULL); in threadExitUncaughtException()
1765 handlerObj = group; in threadExitUncaughtException()
1823 pArgs->group = systemGroup; in dvmCreateInternalThread()
1894 jniArgs.group = pArgs->group; in internalThreadStart()
2066 dvmCallMethod(self, init, threadObj, &unused, (Object*)pArgs->group, in dvmAttachCurrentThread()
2172 Object* group; in dvmDetachCurrentThread() local
2202 group = dvmGetFieldObject(self->threadObj, gDvm.offJavaLangThread_group); in dvmDetachCurrentThread()
2203 LOG_THREAD("threadid=%d: detach (group=%p)\n", self->threadId, group); in dvmDetachCurrentThread()
2216 threadExitUncaughtException(self, group); in dvmDetachCurrentThread()
2221 if (group != NULL) { in dvmDetachCurrentThread()
2223 group->clazz->vtable[gDvm.voffJavaLangThreadGroup_removeThread]; in dvmDetachCurrentThread()
2225 dvmCallMethod(self, removeThread, group, &unused, self->threadObj); in dvmDetachCurrentThread()