Lines Matching refs:ThreadList
86 struct ThreadList *list; /* Tells us what list this thread is in */
91 typedef struct ThreadList { struct
93 } ThreadList; argument
119 static ThreadList runningThreads;
120 static ThreadList otherThreads;
208 nonTlsSearch(JNIEnv *env, ThreadList *list, jthread thread) in nonTlsSearch()
226 findThread(ThreadList *list, jthread thread) in findThread()
263 removeNode(ThreadList *list, ThreadNode *node) in removeNode()
286 addNode(ThreadList *list, ThreadNode *node) in addNode()
302 insertThread(JNIEnv *env, ThreadList *list, jthread thread) in insertThread()
380 removeThread(JNIEnv *env, ThreadList *list, jthread thread) in removeThread()
392 removeResumed(JNIEnv *env, ThreadList *list) in removeResumed()
407 moveNode(ThreadList *source, ThreadList *dest, ThreadNode *node) in moveNode()
417 enumerateOverThreadList(JNIEnv *env, ThreadList *list, in enumerateOverThreadList()
610 ThreadList *list; in pendingAppResume()