Home | History | Annotate | Download | only in vm

Lines Matching refs:threadList

310     gDvm.threadList = thread;
419 if (gDvm.threadList != NULL) {
426 freeThread(gDvm.threadList);
427 gDvm.threadList = NULL;
641 target = gDvm.threadList;
700 target = gDvm.threadList;
737 target = gDvm.threadList;
759 self = gDvm.threadList;
792 thread = gDvm.threadList;
1055 if (thread == gDvm.threadList) {
1057 gDvm.threadList = thread->next;
1585 newThread->next = gDvm.threadList->next;
1588 newThread->prev = gDvm.threadList;
1589 gDvm.threadList->next = newThread;
1991 self->next = gDvm.threadList->next;
1994 self->prev = gDvm.threadList;
1995 gDvm.threadList->next = self;
2774 for (thread = gDvm.threadList; thread != NULL; thread = thread->next) {
2803 for (thread = gDvm.threadList; thread != NULL; thread = thread->next) {
2848 for (thread = gDvm.threadList; thread != NULL; thread = thread->next) {
2940 for (thread = gDvm.threadList; thread != NULL; thread = thread->next) {
3228 Thread* thread = gDvm.threadList;
3255 threadList; thread != NULL; thread = thread->next) {
3271 for (thread = gDvm.threadList; thread != NULL; thread = thread->next) {
3363 * Return true if the thread is on gDvm.threadList.
3371 if (thread == gDvm.threadList) {
3691 thread = gDvm.threadList;
4195 for (thread = gDvm.threadList; thread != NULL;