Home | History | Annotate | Download | only in back

Lines Matching defs:threads

115  * Threads which have issued thread start events and not yet issued thread
116 * end events are maintained in the "runningThreads" list. All other threads known
201 * It assumed that this logic is never dealing with terminated threads,
221 * These functions maintain the linked list of currently running threads.
234 * any threads that we could match.
340 * If there is a pending suspendAll, all new threads should
353 * Some threads may not be in a state that allows setting of TLS,
354 * which is ok, see findThread, it deals with threads without TLS set.
540 * code to safely suspend and resume the application threads
759 * to suspend threads while any thread is within a
800 * the thread list with already-existing threads. The threadLock
816 jthread *threads;
818 threads = allThreads(&threadCount);
819 if (threads == NULL) {
827 jthread thread = threads[i];
832 * pre-existing threads have been started because we
837 * the threads that already exist (e.g. the finalizer thread).
890 /* Ignore requests for suspending debugger threads */
923 /* Ignore requests for suspending debugger threads */
997 * threads.
1002 * These functions suspend and resume application threads
1004 * state of threads that were already suspended beforehand.
1015 * progress (not including those in suspended threads). The wait is
1016 * timed because the threads suspended through
1057 * to a separate list of threads so that we'll resume it later.
1178 * just counts up the number of threads to be hard resumed.
1181 * threads to be passed to ResumeThreadList().
1201 /* count number of threads to hard resume */
1222 /* copy the jthread values for threads to hard resume */
1283 * to a separate list of threads so that we'll resume it later.
1291 /* Ignore requests for suspending debugger threads */
1508 * Get a list of all threads and suspend them.
1512 jthread *threads;
1515 threads = allThreads(&count);
1516 if (threads == NULL) {
1521 error = commonSuspendList(env, count, threads);
1530 error = commonSuspend(env, threads[i], JNI_FALSE);
1539 * Update the suspend count of any threads not yet (or no longer)
1544 arg.list = threads;
1588 * Resume only those threads that the debugger has suspended. All
1589 * such threads must have a node in one of the thread lists, so there's
2064 * Check the list of unknown threads maintained by suspend