Lines Matching refs:m_threads
100 for (const auto &thread : process_up->m_threads) in Launch()
179 m_threads.clear(); in MonitorExited()
189 for (const auto &thread : m_threads) { in MonitorSIGSTOP()
256 for (const auto &thread : m_threads) in MonitorSIGTRAP()
258 SetCurrentThreadID(m_threads.front()->GetID()); in MonitorSIGTRAP()
264 for (const auto &t : m_threads) { in MonitorSIGTRAP()
373 for (const auto &abs_thread : m_threads) { in MonitorSignal()
439 for (const auto &abs_thread : m_threads) { in Resume()
700 size_t NativeProcessFreeBSD::UpdateThreads() { return m_threads.size(); } in UpdateThreads()
780 for (const auto &thread : m_threads) { in HasThreadNoLock()
801 if (m_threads.empty()) in AddThread()
804 m_threads.push_back(std::make_unique<NativeThreadFreeBSD>(*this, thread_id)); in AddThread()
805 return static_cast<NativeThreadFreeBSD &>(*m_threads.back()); in AddThread()
816 for (auto it = m_threads.begin(); it != m_threads.end(); ++it) { in RemoveThread()
818 m_threads.erase(it); in RemoveThread()
824 SetCurrentThreadID(m_threads.front()->GetID()); in RemoveThread()
847 for (const auto &thread : m_threads) in Attach()
851 SetCurrentThreadID(m_threads.front()->GetID()); in Attach()
942 m_threads.clear(); in ReinitializeThreads()
1008 for (const auto &thread : child_process->m_threads) in MonitorClone()