Lines Matching refs:m_threads
100 for (const auto &thread : process_up->m_threads) in Launch()
174 m_threads.clear(); in MonitorExited()
184 for (const auto &thread : m_threads) { in MonitorSIGSTOP()
251 for (const auto &thread : m_threads) in MonitorSIGTRAP()
258 for (const auto &t : m_threads) { in MonitorSIGTRAP()
364 for (const auto &abs_thread : m_threads) { in MonitorSignal()
429 for (const auto &abs_thread : m_threads) { in Resume()
686 size_t NativeProcessFreeBSD::UpdateThreads() { return m_threads.size(); } in UpdateThreads()
766 for (const auto &thread : m_threads) { in HasThreadNoLock()
787 if (m_threads.empty()) in AddThread()
790 m_threads.push_back(std::make_unique<NativeThreadFreeBSD>(*this, thread_id)); in AddThread()
791 return static_cast<NativeThreadFreeBSD &>(*m_threads.back()); in AddThread()
802 for (auto it = m_threads.begin(); it != m_threads.end(); ++it) { in RemoveThread()
804 m_threads.erase(it); in RemoveThread()
830 for (const auto &thread : m_threads) in Attach()
834 SetCurrentThreadID(m_threads.front()->GetID()); in Attach()
925 m_threads.clear(); in ReinitializeThreads()
991 for (const auto &thread : child_process->m_threads) in MonitorClone()