| /llvm-project-15.0.7/lldb/include/lldb/Host/ |
| H A D | Debug.h | 63 AppendAction(LLDB_INVALID_THREAD_ID, lldb::eStateRunning); in AppendResumeAll() 67 AppendAction(LLDB_INVALID_THREAD_ID, lldb::eStateStopped); in AppendSuspendAll() 71 AppendAction(LLDB_INVALID_THREAD_ID, lldb::eStateStepping); in AppendStepAll() 81 if (default_ok && tid != LLDB_INVALID_THREAD_ID) in GetActionForThread() 82 return GetActionForThread(LLDB_INVALID_THREAD_ID, false); in GetActionForThread() 97 if (GetActionForThread(LLDB_INVALID_THREAD_ID, true) == nullptr) { in SetDefaultThreadActionIfNeeded() 99 ResumeAction default_action = {LLDB_INVALID_THREAD_ID, action, signal}; in SetDefaultThreadActionIfNeeded() 108 if (tid != LLDB_INVALID_THREAD_ID) { in SetSignalHandledForThread()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | ThreadSpec.cpp | 25 lldb::tid_t tid = LLDB_INVALID_THREAD_ID; in CreateFromStructuredData() 58 if (m_tid != LLDB_INVALID_THREAD_ID) in SerializeToStructuredData() 77 if (m_tid == LLDB_INVALID_THREAD_ID) in TIDMatches() 127 return (m_index != UINT32_MAX || m_tid != LLDB_INVALID_THREAD_ID || in HasSpecification() 140 if (GetTID() != LLDB_INVALID_THREAD_ID) in GetDescription()
|
| H A D | ThreadList.cpp | 28 m_selected_tid(LLDB_INVALID_THREAD_ID) {} in ThreadList() 448 m_selected_tid = LLDB_INVALID_THREAD_ID; in Clear() 668 m_selected_tid = LLDB_INVALID_THREAD_ID; in SetSelectedThreadByID() 673 return m_selected_tid != LLDB_INVALID_THREAD_ID; in SetSelectedThreadByID() 683 m_selected_tid = LLDB_INVALID_THREAD_ID; in SetSelectedThreadByIndexID() 688 return m_selected_tid != LLDB_INVALID_THREAD_ID; in SetSelectedThreadByIndexID() 755 : m_thread_list(nullptr), m_tid(LLDB_INVALID_THREAD_ID) { in ExpressionExecutionThreadPusher()
|
| H A D | QueueItem.cpp | 22 m_enqueueing_thread_id(LLDB_INVALID_THREAD_ID), in QueueItem()
|
| H A D | ExecutionContext.cpp | 439 m_tid = LLDB_INVALID_THREAD_ID; in operator =() 577 if (m_tid != LLDB_INVALID_THREAD_ID) { in GetThreadSP()
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | ThreadSpec.h | 64 if (m_tid == LLDB_INVALID_THREAD_ID || thread_id == LLDB_INVALID_THREAD_ID) in TIDMatches() 124 lldb::tid_t m_tid = LLDB_INVALID_THREAD_ID;
|
| H A D | ExecutionContext.h | 247 bool HasThreadRef() const { return m_tid != LLDB_INVALID_THREAD_ID; } in HasThreadRef() 256 m_tid = LLDB_INVALID_THREAD_ID; in ClearThread() 266 lldb::tid_t m_tid = LLDB_INVALID_THREAD_ID; ///< The thread ID that this
|
| H A D | ThreadList.h | 57 if (m_thread_list && m_tid != LLDB_INVALID_THREAD_ID) in ~ExpressionExecutionThreadPusher()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/ |
| H A D | HistoryThread.cpp | 77 if (m_originating_unique_thread_id != LLDB_INVALID_THREAD_ID) { in GetExtendedBacktraceOriginatingIndexID() 84 return LLDB_INVALID_THREAD_ID; in GetExtendedBacktraceOriginatingIndexID()
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | GDBRemote.h | 65 tid = LLDB_INVALID_THREAD_ID; in Clear() 78 lldb::tid_t tid = LLDB_INVALID_THREAD_ID;
|
| /llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptedThreadPythonInterface.cpp | 68 return LLDB_INVALID_THREAD_ID; in GetThreadID() 70 return obj->GetIntegerValue(LLDB_INVALID_THREAD_ID); in GetThreadID()
|
| /llvm-project-15.0.7/lldb/include/lldb/ |
| H A D | lldb-defines.h | 82 #define LLDB_INVALID_THREAD_ID 0 macro
|
| /llvm-project-15.0.7/lldb/include/lldb/Breakpoint/ |
| H A D | WatchpointOptions.h | 46 lldb::tid_t thread_id = LLDB_INVALID_THREAD_ID);
|
| /llvm-project-15.0.7/lldb/source/Plugins/TraceExporter/ctf/ |
| H A D | CommandObjectThreadTraceExportCTF.cpp | 77 size_t tid = m_options.m_thread_index.value_or(LLDB_INVALID_THREAD_ID); in DoExecute()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerLLGS.h | 103 lldb::tid_t m_current_tid = LLDB_INVALID_THREAD_ID; 104 lldb::tid_t m_continue_tid = LLDB_INVALID_THREAD_ID;
|
| H A D | GDBRemoteCommunicationServerLLGS.cpp | 1606 if (signal_tid != LLDB_INVALID_THREAD_ID) { in Handle_C() 1686 actions.GetActionForThread(LLDB_INVALID_THREAD_ID, false)) { in ResumeActionListStopsAllThreads() 1725 thread_action.tid = LLDB_INVALID_THREAD_ID; in Handle_vCont() 1799 tid = LLDB_INVALID_THREAD_ID; in Handle_vCont() 1900 : LLDB_INVALID_THREAD_ID); in Handle_stop_reason() 2378 if (tid != LLDB_INVALID_THREAD_ID && tid != 0) { in Handle_H() 3020 if (tid == 0 || tid == LLDB_INVALID_THREAD_ID) in Handle_s() 3022 if (tid == LLDB_INVALID_THREAD_ID) in Handle_s() 3591 if (tid == LLDB_INVALID_THREAD_ID) { in Handle_qThreadStopInfo() 4078 if (current_tid == LLDB_INVALID_THREAD_ID) in GetThreadFromSuffix() [all …]
|
| H A D | ProcessGDBRemote.cpp | 1446 if (tid != LLDB_INVALID_THREAD_ID && in UpdateThreadIDsFromStopReplyThreadsValue() 1480 lldb::tid_t tid = LLDB_INVALID_THREAD_ID; in UpdateThreadIDList() 1656 if (tid != LLDB_INVALID_THREAD_ID) { in SetThreadStopInfo() 1836 LLDB_INVALID_THREAD_ID); in SetThreadStopInfo() 1845 LLDB_INVALID_THREAD_ID); in SetThreadStopInfo() 1958 lldb::tid_t tid = LLDB_INVALID_THREAD_ID; in SetThreadStopInfo() 2115 lldb::tid_t tid = LLDB_INVALID_THREAD_ID; in SetThreadStopInfo() 2150 tid = LLDB_INVALID_THREAD_ID; in SetThreadStopInfo() 2289 if (tid == LLDB_INVALID_THREAD_ID) { in SetThreadStopInfo() 2345 if (m_initial_tid != LLDB_INVALID_THREAD_ID) { in RefreshStateAfterStop() [all …]
|
| H A D | GDBRemoteCommunicationClient.h | 584 lldb::tid_t m_curr_tid = LLDB_INVALID_THREAD_ID; 586 lldb::tid_t m_curr_tid_run = LLDB_INVALID_THREAD_ID;
|
| /llvm-project-15.0.7/lldb/include/lldb/Interpreter/ |
| H A D | ScriptedProcessInterface.h | 85 virtual lldb::tid_t GetThreadID() { return LLDB_INVALID_THREAD_ID; } in GetThreadID()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/ |
| H A D | NativeProcessLinux.cpp | 553 m_pending_notification_tid = LLDB_INVALID_THREAD_ID; in MonitorSIGTRAP() 792 if (m_pending_notification_tid != LLDB_INVALID_THREAD_ID) { in MonitorSignal() 1637 if (tid == LLDB_INVALID_THREAD_ID) in Detach() 1783 if (m_pending_notification_tid != LLDB_INVALID_THREAD_ID) { in ResumeThread() 1833 if (m_pending_notification_tid == LLDB_INVALID_THREAD_ID) in SignalIfAllThreadsStopped() 1857 m_pending_notification_tid = LLDB_INVALID_THREAD_ID; in SignalIfAllThreadsStopped() 1864 if (m_pending_notification_tid != LLDB_INVALID_THREAD_ID && in ThreadWasCreated()
|
| H A D | NativeProcessLinux.h | 156 lldb::tid_t m_pending_notification_tid = LLDB_INVALID_THREAD_ID;
|
| /llvm-project-15.0.7/lldb/tools/lldb-vscode/ |
| H A D | VSCode.cpp | 41 focus_tid(LLDB_INVALID_THREAD_ID), sent_terminated_event(false), 368 auto tid = GetSigned(arguments, "threadId", LLDB_INVALID_THREAD_ID); in GetLLDBThread()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBBreakpointName.cpp | 369 return LLDB_INVALID_THREAD_ID; in GetThreadID() 396 return LLDB_INVALID_THREAD_ID; in GetThreadIndex()
|
| /llvm-project-15.0.7/lldb/source/Breakpoint/ |
| H A D | BreakpointLocation.cpp | 103 if (thread_id != LLDB_INVALID_THREAD_ID) in SetThreadID() 121 return LLDB_INVALID_THREAD_ID; in GetThreadID()
|
| /llvm-project-15.0.7/lldb/source/Plugins/OperatingSystem/Python/ |
| H A D | OperatingSystemPython.cpp | 221 tid_t tid = LLDB_INVALID_THREAD_ID; in CreateThreadFromThreadInfo()
|