Lines Matching refs:m_threads
104 for (const auto &thread : process_up->m_threads) in Launch()
178 m_threads.clear(); in MonitorExited()
198 for (const auto &thread : m_threads) { in MonitorSIGSTOP()
225 for (const auto &t : m_threads) { in MonitorSIGTRAP()
260 for (const auto &thread : m_threads) in MonitorSIGTRAP()
370 for (const auto &abs_thread : m_threads) { in MonitorSignal()
489 ComputeSignalInfo(m_threads, resume_actions); in Resume()
493 for (const auto &abs_thread : m_threads) { in Resume()
746 size_t NativeProcessNetBSD::UpdateThreads() { return m_threads.size(); } in UpdateThreads()
826 for (const auto &thread : m_threads) { in HasThreadNoLock()
847 if (m_threads.empty()) in AddThread()
850 m_threads.push_back(std::make_unique<NativeThreadNetBSD>(*this, thread_id)); in AddThread()
851 return static_cast<NativeThreadNetBSD &>(*m_threads.back()); in AddThread()
862 for (auto it = m_threads.begin(); it != m_threads.end(); ++it) { in RemoveThread()
864 m_threads.erase(it); in RemoveThread()
890 for (const auto &thread : m_threads) in Attach()
894 SetCurrentThreadID(m_threads.front()->GetID()); in Attach()
1005 m_threads.clear(); in ReinitializeThreads()
1075 for (const auto &thread : child_process->m_threads) in MonitorClone()