Home
last modified time | relevance | path

Searched refs:LLDB_INVALID_THREAD_ID (Results 1 – 25 of 36) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DDebug.h63 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()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadSpec.cpp25 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 DThreadList.cpp28 m_selected_tid(LLDB_INVALID_THREAD_ID) {} in ThreadList()
474 m_selected_tid = LLDB_INVALID_THREAD_ID; in Clear()
702 m_selected_tid = LLDB_INVALID_THREAD_ID; in SetSelectedThreadByID()
707 return m_selected_tid != LLDB_INVALID_THREAD_ID; in SetSelectedThreadByID()
717 m_selected_tid = LLDB_INVALID_THREAD_ID; in SetSelectedThreadByIndexID()
722 return m_selected_tid != LLDB_INVALID_THREAD_ID; in SetSelectedThreadByIndexID()
793 : m_thread_list(nullptr), m_tid(LLDB_INVALID_THREAD_ID) { in ExpressionExecutionThreadPusher()
H A DQueueItem.cpp22 m_enqueueing_thread_id(LLDB_INVALID_THREAD_ID), in QueueItem()
H A DExecutionContext.cpp440 m_tid = LLDB_INVALID_THREAD_ID; in operator =()
579 if (m_tid != LLDB_INVALID_THREAD_ID) { in GetThreadSP()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadSpec.h64 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 DExecutionContext.h247 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 DThreadList.h58 if (m_thread_list && m_tid != LLDB_INVALID_THREAD_ID) in ~ExpressionExecutionThreadPusher()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DGDBRemote.h61 tid = LLDB_INVALID_THREAD_ID; in Clear()
74 lldb::tid_t tid = LLDB_INVALID_THREAD_ID;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DHistoryThread.cpp77 if (m_originating_unique_thread_id != LLDB_INVALID_THREAD_ID) { in GetExtendedBacktraceOriginatingIndexID()
84 return LLDB_INVALID_THREAD_ID; in GetExtendedBacktraceOriginatingIndexID()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedThreadPythonInterface.cpp50 return LLDB_INVALID_THREAD_ID; in GetThreadID()
52 return obj->GetUnsignedIntegerValue(LLDB_INVALID_THREAD_ID); in GetThreadID()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedThreadPythonInterface.cpp
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h46 lldb::tid_t thread_id = LLDB_INVALID_THREAD_ID);
159 /// LLDB_INVALID_THREAD_ID for all threads.
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-defines.h90 #define LLDB_INVALID_THREAD_ID 0 macro
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.h104 lldb::tid_t m_current_tid = LLDB_INVALID_THREAD_ID;
105 lldb::tid_t m_continue_tid = LLDB_INVALID_THREAD_ID;
H A DGDBRemoteCommunicationServerLLGS.cpp1604 if (signal_tid != LLDB_INVALID_THREAD_ID) { in Handle_C()
1684 actions.GetActionForThread(LLDB_INVALID_THREAD_ID, false)) { in ResumeActionListStopsAllThreads()
1723 thread_action.tid = LLDB_INVALID_THREAD_ID; in Handle_vCont()
1797 tid = LLDB_INVALID_THREAD_ID; in Handle_vCont()
1801 if (tid != LLDB_INVALID_THREAD_ID) in Handle_vCont()
1905 : LLDB_INVALID_THREAD_ID); in Handle_stop_reason()
2382 if (tid != LLDB_INVALID_THREAD_ID && tid != 0) { in Handle_H()
3024 if (tid == 0 || tid == LLDB_INVALID_THREAD_ID) in Handle_s()
3026 if (tid == LLDB_INVALID_THREAD_ID) in Handle_s()
3614 const lldb::tid_t tid = packet.GetHexMaxU64(false, LLDB_INVALID_THREAD_ID); in Handle_qThreadStopInfo()
[all …]
H A DGDBRemoteCommunicationClient.h581 lldb::tid_t m_curr_tid = LLDB_INVALID_THREAD_ID;
583 lldb::tid_t m_curr_tid_run = LLDB_INVALID_THREAD_ID;
H A DProcessGDBRemote.cpp267 m_initial_tid(LLDB_INVALID_THREAD_ID), m_allow_flash_writes(false), in ProcessGDBRemote()
1414 if (tid != LLDB_INVALID_THREAD_ID && in UpdateThreadIDsFromStopReplyThreadsValue()
1448 lldb::tid_t tid = LLDB_INVALID_THREAD_ID; in UpdateThreadIDList()
1577 "tid", tid, LLDB_INVALID_THREAD_ID)) { in GetThreadStopInfoFromJSON()
1660 if (tid == LLDB_INVALID_THREAD_ID) in SetThreadStopInfo()
1866 lldb::tid_t child_tid = desc_extractor.GetU64(LLDB_INVALID_THREAD_ID); in SetThreadStopInfo()
1874 lldb::tid_t child_tid = desc_extractor.GetU64(LLDB_INVALID_THREAD_ID); in SetThreadStopInfo()
1981 lldb::tid_t tid = LLDB_INVALID_THREAD_ID; in SetThreadStopInfo()
2010 tid = object->GetUnsignedIntegerValue(LLDB_INVALID_THREAD_ID); in SetThreadStopInfo()
2139 lldb::tid_t tid = LLDB_INVALID_THREAD_ID; in SetThreadStopInfo()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/ctf/
H A DCommandObjectThreadTraceExportCTF.cpp77 size_t tid = m_options.m_thread_index.value_or(LLDB_INVALID_THREAD_ID); in DoExecute()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptedProcessInterface.h
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThread.cpp789 uint32_t m_thread_idx = LLDB_INVALID_THREAD_ID;
845 m_thread_idx = LLDB_INVALID_THREAD_ID; in OptionParsingStarting()
855 uint32_t m_step_thread_idx = LLDB_INVALID_THREAD_ID;
911 if (m_options.m_thread_idx == LLDB_INVALID_THREAD_ID) { in DoExecute()
1106 m_thread_id = LLDB_INVALID_THREAD_ID; in OptionParsingStarting()
1115 m_thread_id = LLDB_INVALID_THREAD_ID; in SetOptionValue()
1182 } else if (m_options.m_thread_id == LLDB_INVALID_THREAD_ID && in DoExecute()
1189 } else if (m_options.m_thread_id != LLDB_INVALID_THREAD_ID && in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointName.cpp369 return LLDB_INVALID_THREAD_ID; in GetThreadID()
396 return LLDB_INVALID_THREAD_ID; in GetThreadIndex()
H A DSBThread.cpp382 return LLDB_INVALID_THREAD_ID; in GetThreadID()
1228 strm, LLDB_INVALID_THREAD_ID, stop_format); in GetDescription()
1250 strm, LLDB_INVALID_THREAD_ID, format.GetFormatEntrySP().get())) { in GetDescriptionWithFormat()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp113 return LLDB_INVALID_THREAD_ID; in GetThreadID()
667 if (thread_id != LLDB_INVALID_THREAD_ID) in SetThreadIDInternal()
/freebsd/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp230 tid_t tid = LLDB_INVALID_THREAD_ID; in CreateThreadFromThreadInfo()

12