Searched refs:m_threads (Results 1 – 8 of 8) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | ThreadList.cpp | 47 m_threads = rhs.m_threads; in operator =() 87 return m_threads.size(); in GetSize() 97 if (idx < m_threads.size()) in GetThreadAtIndex() 98 thread_sp = m_threads[idx]; in GetThreadAtIndex() 113 thread_sp = m_threads[idx]; in FindThreadByID() 150 m_threads.erase(m_threads.begin() + idx); in RemoveThreadByID() 170 m_threads.erase(m_threads.begin() + idx); in RemoveThreadByProtocolID() 263 threads_copy = m_threads; in ShouldStop() 446 m_threads.clear(); in Clear() 655 thread_sp = m_threads[0]; in GetSelectedThread() [all …]
|
| H A D | ThreadCollection.cpp | 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() 37 std::upper_bound(m_threads.begin(), m_threads.end(), thread_sp, 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 …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBQueue.cpp | 30 QueueImpl() : m_queue_wp(), m_threads(), m_pending_items() {} in QueueImpl() 33 : m_queue_wp(), m_threads(), m_thread_list_fetched(false), in QueueImpl() 42 m_threads = rhs.m_threads; in QueueImpl() 55 m_threads.clear(); in Clear() 104 m_threads.push_back(thread_sp); in FetchThreads() 138 result = m_threads.size(); in GetNumThreads() 148 if (queue_sp && idx < m_threads.size()) { in GetThreadAtIndex() 151 ThreadSP thread_sp = m_threads[idx].lock(); in GetThreadAtIndex() 210 m_threads; // threads currently executing this queue's items member in lldb_private::QueueImpl
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeProcessNetBSD.cpp | 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() 806 for (const auto &thread : m_threads) { in HasThreadNoLock() 827 if (m_threads.empty()) 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() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeProcessFreeBSD.cpp | 174 m_threads.clear(); in MonitorExited() 184 for (const auto &thread : m_threads) { in MonitorSIGSTOP() 251 for (const auto &thread : m_threads) in MonitorSIGTRAP() 258 for (const auto &t : m_threads) { in MonitorSIGTRAP() 364 for (const auto &abs_thread : m_threads) { in MonitorSignal() 766 for (const auto &thread : m_threads) { in HasThreadNoLock() 787 if (m_threads.empty()) in AddThread() 802 for (auto it = m_threads.begin(); it != m_threads.end(); ++it) { in RemoveThread() 804 m_threads.erase(it); in RemoveThread() 830 for (const auto &thread : m_threads) in Attach() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | ThreadCollection.h | 47 return ThreadIterable(m_threads, GetMutex()); in Threads() 53 collection m_threads;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | NativeProcessProtocol.cpp | 100 if (idx < m_threads.size()) in GetThreadAtIndex() 101 return m_threads[idx].get(); in GetThreadAtIndex() 107 for (const auto &thread : m_threads) { in GetThreadByIDUnlocked() 172 for (const auto &thread : m_threads) { in SetWatchpoint() 213 for (const auto &thread : m_threads) { in RemoveWatchpoint() 259 for (const auto &thread : m_threads) { in SetHardwareBreakpoint() 298 for (const auto &thread : m_threads) { in RemoveHardwareBreakpoint()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/common/ |
| H A D | NativeProcessProtocol.h | 382 std::vector<std::unique_ptr<NativeThreadProtocol>> m_threads; variable
|