Lines Matching refs:m_threads
99 for (const auto &thread : process_up->m_threads) in Launch()
177 m_threads.clear(); in MonitorExited()
187 for (const auto &thread : m_threads) { in MonitorSIGSTOP()
254 for (const auto &thread : m_threads) in MonitorSIGTRAP()
256 SetCurrentThreadID(m_threads.front()->GetID()); in MonitorSIGTRAP()
262 for (const auto &t : m_threads) { in MonitorSIGTRAP()
371 for (const auto &abs_thread : m_threads) { in MonitorSignal()
437 for (const auto &abs_thread : m_threads) { in Resume()
698 size_t NativeProcessFreeBSD::UpdateThreads() { return m_threads.size(); } in UpdateThreads()
778 for (const auto &thread : m_threads) { in HasThreadNoLock()
799 if (m_threads.empty()) in AddThread()
802 m_threads.push_back(std::make_unique<NativeThreadFreeBSD>(*this, thread_id)); in AddThread()
803 return static_cast<NativeThreadFreeBSD &>(*m_threads.back()); in AddThread()
814 for (auto it = m_threads.begin(); it != m_threads.end(); ++it) { in RemoveThread()
816 m_threads.erase(it); in RemoveThread()
822 SetCurrentThreadID(m_threads.front()->GetID()); in RemoveThread()
845 for (const auto &thread : m_threads) in Attach()
849 SetCurrentThreadID(m_threads.front()->GetID()); in Attach()
940 m_threads.clear(); in ReinitializeThreads()
1006 for (const auto &thread : child_process->m_threads) in MonitorClone()