Lines Matching refs:m_threads

48     m_threads = rhs.m_threads;  in operator =()
88 return m_threads.size(); in GetSize()
98 if (idx < m_threads.size()) in GetThreadAtIndex()
99 thread_sp = m_threads[idx]; in GetThreadAtIndex()
111 const uint32_t num_threads = m_threads.size(); in FindThreadByID()
113 if (m_threads[idx]->GetID() == tid) { in FindThreadByID()
114 thread_sp = m_threads[idx]; in FindThreadByID()
129 const uint32_t num_threads = m_threads.size(); in FindThreadByProtocolID()
131 if (m_threads[idx]->GetProtocolID() == tid) { in FindThreadByProtocolID()
132 thread_sp = m_threads[idx]; in FindThreadByProtocolID()
147 const uint32_t num_threads = m_threads.size(); in RemoveThreadByID()
149 if (m_threads[idx]->GetID() == tid) { in RemoveThreadByID()
150 thread_sp = m_threads[idx]; in RemoveThreadByID()
151 m_threads.erase(m_threads.begin() + idx); in RemoveThreadByID()
167 const uint32_t num_threads = m_threads.size(); in RemoveThreadByProtocolID()
169 if (m_threads[idx]->GetProtocolID() == tid) { in RemoveThreadByProtocolID()
170 thread_sp = m_threads[idx]; in RemoveThreadByProtocolID()
171 m_threads.erase(m_threads.begin() + idx); in RemoveThreadByProtocolID()
184 const uint32_t num_threads = m_threads.size(); in GetThreadSPForThreadPtr()
186 if (m_threads[idx].get() == thread_ptr) { in GetThreadSPForThreadPtr()
187 thread_sp = m_threads[idx]; in GetThreadSPForThreadPtr()
199 const uint32_t num_threads = m_threads.size(); in GetBackingThread()
201 if (m_threads[idx]->GetBackingThread() == real_thread) { in GetBackingThread()
202 thread_sp = m_threads[idx]; in GetBackingThread()
216 const uint32_t num_threads = m_threads.size(); in FindThreadByIndexID()
218 if (m_threads[idx]->GetIndexID() == index_id) { in FindThreadByIndexID()
219 thread_sp = m_threads[idx]; in FindThreadByIndexID()
245 for (lldb::ThreadSP thread_sp : m_threads) { in ShouldStop()
267 threads_copy = m_threads; in ShouldStop()
277 __FUNCTION__, (uint64_t)m_threads.size(), in ShouldStop()
381 collection::iterator pos, end = m_threads.end(); in ShouldReportStop()
386 (uint64_t)m_threads.size()); in ShouldReportStop()
392 for (pos = m_threads.begin(); pos != end; ++pos) { in ShouldReportStop()
429 collection::iterator pos, end = m_threads.end(); in SetShouldReportStop()
430 for (pos = m_threads.begin(); pos != end; ++pos) { in SetShouldReportStop()
442 collection::iterator pos, end = m_threads.end(); in ShouldReportRun()
449 for (pos = m_threads.begin(); pos != end; ++pos) { in ShouldReportRun()
474 m_threads.clear(); in Clear()
480 const uint32_t num_threads = m_threads.size(); in Destroy()
482 m_threads[idx]->DestroyThread(); in Destroy()
497 collection::iterator pos, end = m_threads.end(); in RefreshStateAfterStop()
498 for (pos = m_threads.begin(); pos != end; ++pos) in RefreshStateAfterStop()
507 collection::iterator pos, end = m_threads.end(); in DiscardThreadPlans()
508 for (pos = m_threads.begin(); pos != end; ++pos) in DiscardThreadPlans()
520 collection::iterator pos, end = m_threads.end(); in WillResume()
531 for (pos = m_threads.begin(); pos != end; ++pos) { in WillResume()
563 for (pos = m_threads.begin(); pos != end; ++pos) { in WillResume()
588 for (pos = m_threads.begin(); pos != end; ++pos) { in WillResume()
615 for (pos = m_threads.begin(); pos != end; ++pos) { in WillResume()
639 for (pos = m_threads.begin(); pos != end; ++pos) { in WillResume()
657 collection::iterator pos, end = m_threads.end(); in DidResume()
658 for (pos = m_threads.begin(); pos != end; ++pos) { in DidResume()
669 collection::iterator pos, end = m_threads.end(); in DidStop()
670 for (pos = m_threads.begin(); pos != end; ++pos) { in DidStop()
688 if (m_threads.size() == 0) in GetSelectedThread()
690 m_selected_tid = m_threads[0]->GetID(); in GetSelectedThread()
691 thread_sp = m_threads[0]; in GetSelectedThread()
745 m_threads.swap(rhs.m_threads); in Update()
754 collection::iterator rhs_pos, rhs_end = rhs.m_threads.end(); in Update()
755 for (rhs_pos = rhs.m_threads.begin(); rhs_pos != rhs_end; ++rhs_pos) { in Update()
763 const uint32_t num_threads = m_threads.size(); in Update()
765 ThreadSP backing_thread = m_threads[idx]->GetBackingThread(); in Update()
766 if (m_threads[idx]->GetID() == tid || in Update()
781 collection::iterator pos, end = m_threads.end(); in Flush()
782 for (pos = m_threads.begin(); pos != end; ++pos) in Flush()