Searched refs:m_thread_list (Results 1 – 14 of 14) sorted by relevance
| /openbsd/src/gnu/llvm/lldb/include/lldb/Target/ |
| D | ThreadList.h | 50 : m_thread_list(&thread_list), m_tid(tid) { in ExpressionExecutionThreadPusher() 51 m_thread_list->PushExpressionExecutionThread(m_tid); in ExpressionExecutionThreadPusher() 57 if (m_thread_list && m_tid != LLDB_INVALID_THREAD_ID) in ~ExpressionExecutionThreadPusher() 58 m_thread_list->PopExpressionExecutionThread(m_tid); in ~ExpressionExecutionThreadPusher() 62 ThreadList *m_thread_list;
|
| D | Process.h | 2095 ThreadList &GetThreadList() { return m_thread_list; } in GetThreadList() 2103 ThreadList::ThreadIterable Threads() { return m_thread_list.Threads(); } in Threads() 2887 ThreadList m_thread_list; ///< The threads for this process as the user will variable
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
| D | ProcessWindows.cpp | 217 LLDB_LOG(log, "resuming {0} threads.", m_thread_list.GetSize()); in DoResume() 220 for (uint32_t i = 0; i < m_thread_list.GetSize(); ++i) { in DoResume() 222 m_thread_list.GetThreadAtIndex(i)); in DoResume() 361 m_thread_list.RefreshStateAfterStop(); in RefreshStateAfterStop() 375 m_thread_list.SetSelectedThreadByID(active_exception->GetThreadID()); in RefreshStateAfterStop() 376 ThreadSP stop_thread = m_thread_list.GetSelectedThread(); in RefreshStateAfterStop() 873 for (unsigned i = 0U; i < m_thread_list.GetSize(); i++) { in EnableWatchpoint() 874 Thread *thread = m_thread_list.GetThreadAtIndex(i).get(); in EnableWatchpoint() 886 for (unsigned i = 0U; i < m_thread_list.GetSize(); i++) { in EnableWatchpoint() 887 Thread *thread = m_thread_list.GetThreadAtIndex(i).get(); in EnableWatchpoint() [all …]
|
| /openbsd/src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/ |
| D | MachProcess.mm | 520 m_exception_messages_mutex(PTHREAD_MUTEX_RECURSIVE), m_thread_list(), function 574 return m_thread_list.GetName(tid); 578 return m_thread_list.GetState(tid); 582 return m_thread_list.NumThreads(); 586 return m_thread_list.ThreadIDAtIndex(thread_idx); 591 return m_thread_list.GetThreadIDByMachPortNumber(mach_port_number); 595 MachThreadSP thread_sp(m_thread_list.GetThreadByID(tid)); 613 return m_thread_list.GetRequestedQoS(tid, tsd, dti_qos_class_index); 617 return m_thread_list.GetPThreadT(tid); 621 return m_thread_list.GetDispatchQueueT(tid); [all …]
|
| D | MachProcess.h | 287 MachThreadList &GetThreadList() { return m_thread_list; } in GetThreadList() 431 MachThreadList m_thread_list; // A list of threads that is maintained/updated variable
|
| /openbsd/src/gnu/llvm/lldb/source/Target/ |
| D | Process.cpp | 427 m_thread_list(this), m_thread_plans(*this), m_extended_thread_list(this), in Process() 502 m_thread_list.Clear(); in ~Process() 538 m_thread_list.Destroy(); in Finalize() 1142 if (m_thread_list.GetSize(false) == 0 || in UpdateThreadListIfNeeded() 1143 stop_id != m_thread_list.GetStopID()) { in UpdateThreadListIfNeeded() 1147 std::lock_guard<std::recursive_mutex> guard(m_thread_list.GetMutex()); in UpdateThreadListIfNeeded() 1148 m_thread_list.SetStopID(stop_id); in UpdateThreadListIfNeeded() 1153 ThreadList &old_thread_list = m_thread_list; in UpdateThreadListIfNeeded() 1205 m_thread_list.Update(new_thread_list); in UpdateThreadListIfNeeded() 1206 m_thread_list.SetStopID(stop_id); in UpdateThreadListIfNeeded() [all …]
|
| D | ProcessTrace.cpp | 92 void ProcessTrace::Clear() { m_thread_list.Clear(); } in Clear()
|
| D | ThreadList.cpp | 790 : m_thread_list(nullptr), m_tid(LLDB_INVALID_THREAD_ID) { in ExpressionExecutionThreadPusher() 793 m_thread_list = &thread_sp->GetProcess()->GetThreadList(); in ExpressionExecutionThreadPusher() 794 m_thread_list->PushExpressionExecutionThread(m_tid); in ExpressionExecutionThreadPusher()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/minidump/ |
| D | ProcessMinidump.cpp | 288 m_thread_list = m_minidump_parser->GetThreads(); in DoLoadCore() 333 Process::m_thread_list.SetSelectedThreadByID(m_active_exception->ThreadId); in RefreshStateAfterStop() 334 stop_thread = Process::m_thread_list.GetSelectedThread(); in RefreshStateAfterStop() 459 void ProcessMinidump::Clear() { Process::m_thread_list.Clear(); } in Clear() 463 for (const minidump::Thread &thread : m_thread_list) { in DoUpdateThreadList()
|
| D | ProcessMinidump.h | 112 llvm::ArrayRef<minidump::Thread> m_thread_list; variable
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| D | ProcessKDP.cpp | 415 ThreadSP kernel_thread_sp(m_thread_list.FindThreadByProtocolID(g_kernel_tid)); in DoResume() 516 m_thread_list.RefreshStateAfterStop(); in RefreshStateAfterStop() 689 void ProcessKDP::Clear() { m_thread_list.Clear(); } in Clear()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/mach-core/ |
| D | ProcessMachCore.cpp | 545 m_thread_list.RefreshStateAfterStop(); in RefreshStateAfterStop() 656 void ProcessMachCore::Clear() { m_thread_list.Clear(); } in Clear()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/elf-core/ |
| D | ProcessElfCore.cpp | 444 m_thread_list.Clear(); in Clear()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| D | ProcessGDBRemote.cpp | 1696 if (ThreadSP memory_thread_sp = m_thread_list.GetBackingThread(thread_sp)) in SetThreadStopInfo() 2301 m_thread_list.SetSelectedThreadByID(m_initial_tid); in RefreshStateAfterStop() 2415 m_thread_list.Clear(); in SetLastStopPacket() 3153 m_thread_list.Clear(); in Clear()
|