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