Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadList.cpp46 m_threads = rhs.m_threads; in operator =()
86 return m_threads.size(); in GetSize()
96 if (idx < m_threads.size()) in GetThreadAtIndex()
97 thread_sp = m_threads[idx]; in GetThreadAtIndex()
112 thread_sp = m_threads[idx]; in FindThreadByID()
149 m_threads.erase(m_threads.begin() + idx); in RemoveThreadByID()
169 m_threads.erase(m_threads.begin() + idx); in RemoveThreadByProtocolID()
262 threads_copy = m_threads; in ShouldStop()
447 m_threads.clear(); in Clear()
655 thread_sp = m_threads[0]; in GetSelectedThread()
[all …]
H A DThreadCollection.cpp27 m_threads.push_back(thread_sp); in AddThread()
34 if (m_threads.empty() || m_threads.back()->GetIndexID() < thread_index_id) in AddThreadSortedByIndexID()
35 m_threads.push_back(thread_sp); in AddThreadSortedByIndexID()
37 m_threads.insert( in AddThreadSortedByIndexID()
38 std::upper_bound(m_threads.begin(), m_threads.end(), thread_sp, in AddThreadSortedByIndexID()
49 if (idx < m_threads.size()) in InsertThread()
50 m_threads.insert(m_threads.begin() + idx, thread_sp); in InsertThread()
52 m_threads.push_back(thread_sp); in InsertThread()
57 return m_threads.size(); in GetSize()
63 if (idx < m_threads.size()) in GetThreadAtIndex()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
H A DNativeThreadListDarwin.cpp155 for (auto thread_sp : m_threads) { in GetThreadByID()
165 for (auto thread_sp : m_threads) { in GetThreadByMachPortNumber()
175 for (auto thread_sp : m_threads) { in GetThreadIDByMachPortNumber()
268 if (idx < m_threads.size())
296 m_threads.clear(); in Clear()
341 if (m_threads.empty() || update) { in UpdateThreadList()
397 m_threads.swap(currThreads); in UpdateThreadList()
442 for (auto thread_sp : m_threads) { in Dump()
545 for (auto thread_sp : m_threads) { in ProcessDidStop()
549 return (uint32_t)m_threads.size(); in ProcessDidStop()
[all …]
H A DNativeThreadListDarwin.h130 collection m_threads; variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp178 m_threads.clear(); in MonitorExited()
227 for (const auto &thread : m_threads) in MonitorSIGTRAP()
241 for (const auto &thread : m_threads) in MonitorSIGTRAP()
291 for (const auto &thread : m_threads) { in MonitorSignal()
325 const auto &thread = m_threads[0]; in Resume()
344 for (const auto &thread : m_threads) in Resume()
355 for (const auto &thread : m_threads) in Resume()
631 for (const auto &thread : m_threads) { in HasThreadNoLock()
652 if (m_threads.empty()) in AddThread()
677 for (const auto &thread : m_threads) in Attach()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBQueue.cpp32 : m_queue_wp(), m_threads(), m_thread_list_fetched(false), in QueueImpl()
36 : m_queue_wp(), m_threads(), m_thread_list_fetched(false), in QueueImpl()
45 m_threads = rhs.m_threads; in QueueImpl()
58 m_threads.clear(); in Clear()
121 m_threads.push_back(thread_sp); in FetchThreads()
155 result = m_threads.size(); in GetNumThreads()
165 if (queue_sp && idx < m_threads.size()) { in GetThreadAtIndex()
168 ThreadSP thread_sp = m_threads[idx].lock(); in GetThreadAtIndex()
227 m_threads; // threads currently executing this queue's items member in lldb_private::QueueImpl
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadCollection.h48 return ThreadIterable(m_threads, GetMutex()); in Threads()
54 collection m_threads;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp90 if (idx < m_threads.size()) in GetThreadAtIndex()
91 return m_threads[idx].get(); in GetThreadAtIndex()
97 for (const auto &thread : m_threads) { in GetThreadByIDUnlocked()
162 for (const auto &thread : m_threads) { in SetWatchpoint()
203 for (const auto &thread : m_threads) { in RemoveWatchpoint()
249 for (const auto &thread : m_threads) { in SetHardwareBreakpoint()
288 for (const auto &thread : m_threads) { in RemoveHardwareBreakpoint()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h410 std::vector<std::unique_ptr<NativeThreadProtocol>> m_threads; variable