Lines Matching refs:suspended_threads
402 static void ProcessThreads(SuspendedThreadsList const &suspended_threads, in ProcessThreads() argument
407 for (uptr i = 0; i < suspended_threads.ThreadCount(); i++) { in ProcessThreads()
408 tid_t os_id = static_cast<tid_t>(suspended_threads.GetThreadID(i)); in ProcessThreads()
423 suspended_threads.GetRegistersAndSP(i, ®isters, &sp); in ProcessThreads()
432 if (suspended_threads.GetThreadID(i) == caller_tid) { in ProcessThreads()
630 static void ClassifyAllChunks(SuspendedThreadsList const &suspended_threads, in ClassifyAllChunks() argument
641 ProcessThreads(suspended_threads, frontier, caller_tid, caller_sp); in ClassifyAllChunks()
706 const SuspendedThreadsList &suspended_threads) { in ReportUnsuspendedThreads() argument
707 InternalMmapVector<tid_t> threads(suspended_threads.ThreadCount()); in ReportUnsuspendedThreads()
708 for (uptr i = 0; i < suspended_threads.ThreadCount(); ++i) in ReportUnsuspendedThreads()
709 threads[i] = suspended_threads.GetThreadID(i); in ReportUnsuspendedThreads()
727 static void CheckForLeaksCallback(const SuspendedThreadsList &suspended_threads, in CheckForLeaksCallback() argument
732 ReportUnsuspendedThreads(suspended_threads); in CheckForLeaksCallback()
733 ClassifyAllChunks(suspended_threads, ¶m->frontier, param->caller_tid, in CheckForLeaksCallback()