Lines Matching refs:m_threads
105 for (const auto &thread : process_up->m_threads) in Launch()
179 m_threads.clear(); in MonitorExited()
199 for (const auto &thread : m_threads) { in MonitorSIGSTOP()
226 for (const auto &t : m_threads) { in MonitorSIGTRAP()
261 for (const auto &thread : m_threads) in MonitorSIGTRAP()
371 for (const auto &abs_thread : m_threads) { in MonitorSignal()
467 ComputeSignalInfo(m_threads, resume_actions); in Resume()
471 for (const auto &abs_thread : m_threads) { in Resume()
726 size_t NativeProcessNetBSD::UpdateThreads() { return m_threads.size(); } in UpdateThreads()
806 for (const auto &thread : m_threads) { in HasThreadNoLock()
827 if (m_threads.empty()) in AddThread()
830 m_threads.push_back(std::make_unique<NativeThreadNetBSD>(*this, thread_id)); in AddThread()
831 return static_cast<NativeThreadNetBSD &>(*m_threads.back()); in AddThread()
842 for (auto it = m_threads.begin(); it != m_threads.end(); ++it) { in RemoveThread()
844 m_threads.erase(it); in RemoveThread()
870 for (const auto &thread : m_threads) in Attach()
874 SetCurrentThreadID(m_threads.front()->GetID()); in Attach()
985 m_threads.clear(); in ReinitializeThreads()
1055 for (const auto &thread : child_process->m_threads) in MonitorClone()