Lines Matching defs:suspended_threads
557 static void ProcessThreads(SuspendedThreadsList const &suspended_threads,
563 for (uptr i = 0; i < suspended_threads.ThreadCount(); i++) {
567 const tid_t os_id = suspended_threads.GetThreadID(i);
570 suspended_threads.GetRegistersAndSP(i, ®isters, &sp);
713 static void ClassifyAllChunks(SuspendedThreadsList const &suspended_threads,
724 ProcessThreads(suspended_threads, frontier, caller_tid, caller_sp);
791 const SuspendedThreadsList &suspended_threads) {
792 InternalMmapVector<tid_t> threads(suspended_threads.ThreadCount());
793 for (uptr i = 0; i < suspended_threads.ThreadCount(); ++i)
794 threads[i] = suspended_threads.GetThreadID(i);
816 static void CheckForLeaksCallback(const SuspendedThreadsList &suspended_threads,
821 if (!ReportUnsuspendedThreads(suspended_threads)) {
833 ClassifyAllChunks(suspended_threads, ¶m->frontier, param->caller_tid,