Searched refs:m_threads (Results 1 – 8 of 8) sorted by relevance
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()114 thread_sp = m_threads[idx]; in FindThreadByID()151 m_threads.erase(m_threads.begin() + idx); in RemoveThreadByID()171 m_threads.erase(m_threads.begin() + idx); in RemoveThreadByProtocolID()267 threads_copy = m_threads; in ShouldStop()474 m_threads.clear(); in Clear()691 thread_sp = m_threads[0]; in GetSelectedThread()[all …]
22 : m_threads(threads), m_mutex() {} in ThreadCollection()26 m_threads.push_back(thread_sp); in AddThread()33 if (m_threads.empty() || m_threads.back()->GetIndexID() < thread_index_id) in AddThreadSortedByIndexID()34 m_threads.push_back(thread_sp); in AddThreadSortedByIndexID()36 m_threads.insert( in AddThreadSortedByIndexID()48 if (idx < m_threads.size()) in InsertThread()49 m_threads.insert(m_threads.begin() + idx, thread_sp); in InsertThread()51 m_threads.push_back(thread_sp); in InsertThread()56 return m_threads.size(); in GetSize()62 if (idx < m_threads.size()) in GetThreadAtIndex()[all …]
38 m_threads = rhs.m_threads; in QueueImpl()51 m_threads.clear(); in Clear()98 m_threads.push_back(thread_sp); in FetchThreads()132 result = m_threads.size(); in GetNumThreads()142 if (queue_sp && idx < m_threads.size()) { in GetThreadAtIndex()145 ThreadSP thread_sp = m_threads[idx].lock(); in GetThreadAtIndex()204 m_threads; // threads currently executing this queue's items member in lldb_private::QueueImpl
177 m_threads.clear(); in MonitorExited()187 for (const auto &thread : m_threads) { in MonitorSIGSTOP()254 for (const auto &thread : m_threads) in MonitorSIGTRAP()262 for (const auto &t : m_threads) { in MonitorSIGTRAP()371 for (const auto &abs_thread : m_threads) { in MonitorSignal()778 for (const auto &thread : m_threads) { in HasThreadNoLock()799 if (m_threads.empty()) in AddThread()814 for (auto it = m_threads.begin(); it != m_threads.end(); ++it) { in RemoveThread()816 m_threads.erase(it); in RemoveThread()845 for (const auto &thread : m_threads) in Attach()[all …]
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()826 for (const auto &thread : m_threads) { in HasThreadNoLock()847 if (m_threads.empty()) 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()[all …]
47 return ThreadIterable(m_threads, GetMutex()); in Threads()53 collection m_threads;
102 if (idx < m_threads.size()) in GetThreadAtIndex()103 return m_threads[idx].get(); in GetThreadAtIndex()109 for (const auto &thread : m_threads) { in GetThreadByIDUnlocked()174 for (const auto &thread : m_threads) { in SetWatchpoint()215 for (const auto &thread : m_threads) { in RemoveWatchpoint()261 for (const auto &thread : m_threads) { in SetHardwareBreakpoint()300 for (const auto &thread : m_threads) { in RemoveHardwareBreakpoint()
226 return ThreadIterable(m_threads, m_threads_mutex); in Threads()426 std::vector<std::unique_ptr<NativeThreadProtocol>> m_threads; variable