Home
last modified time | relevance | path

Searched refs:m_threads (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DThreadList.cpp48 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 …]
H A DThreadCollection.cpp22 : 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 …]
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBQueue.cpp38 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
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp177 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 …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp178 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 …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadCollection.h47 return ThreadIterable(m_threads, GetMutex()); in Threads()
53 collection m_threads;
/freebsd-14.2/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp102 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()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h226 return ThreadIterable(m_threads, m_threads_mutex); in Threads()
426 std::vector<std::unique_ptr<NativeThreadProtocol>> m_threads; variable