Lines Matching refs:m_threads
105 for (const auto &thread : process_up->m_threads) in Launch()
180 m_threads.clear(); in MonitorExited()
200 for (const auto &thread : m_threads) { in MonitorSIGSTOP()
227 for (const auto &t : m_threads) { in MonitorSIGTRAP()
262 for (const auto &thread : m_threads) in MonitorSIGTRAP()
372 for (const auto &abs_thread : m_threads) { in MonitorSignal()
468 ComputeSignalInfo(m_threads, resume_actions); in Resume()
472 for (const auto &abs_thread : m_threads) { in Resume()
727 size_t NativeProcessNetBSD::UpdateThreads() { return m_threads.size(); } in UpdateThreads()
807 for (const auto &thread : m_threads) { in HasThreadNoLock()
828 if (m_threads.empty()) in AddThread()
831 m_threads.push_back(std::make_unique<NativeThreadNetBSD>(*this, thread_id)); in AddThread()
832 return static_cast<NativeThreadNetBSD &>(*m_threads.back()); in AddThread()
843 for (auto it = m_threads.begin(); it != m_threads.end(); ++it) { in RemoveThread()
845 m_threads.erase(it); in RemoveThread()
871 for (const auto &thread : m_threads) in Attach()
875 SetCurrentThreadID(m_threads.front()->GetID()); in Attach()
986 m_threads.clear(); in ReinitializeThreads()
1056 for (const auto &thread : child_process->m_threads) in MonitorClone()