Home
last modified time | relevance | path

Searched refs:thread_index (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TraceExporter/ctf/
H A DCommandObjectThreadTraceExportCTF.cpp31 int64_t thread_index; in SetOptionValue() local
32 if (option_arg.empty() || option_arg.getAsInteger(0, thread_index) || in SetOptionValue()
33 thread_index < 0) in SetOptionValue()
37 m_thread_index = thread_index; in SetOptionValue()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp831 uint32_t thread_index = 0; in SendStopReplyPacketForThread() local
834 listed_thread; ++thread_index, in SendStopReplyPacketForThread()
836 if (thread_index > 0) in SendStopReplyPacketForThread()
847 if (thread_index > 1) { in SendStopReplyPacketForThread()
1852 uint32_t thread_index; in Handle_qfThreadInfo() local
1853 for (thread_index = 0, in Handle_qfThreadInfo()
1854 thread = m_current_process->GetThreadAtIndex(thread_index); in Handle_qfThreadInfo()
1855 thread; ++thread_index, in Handle_qfThreadInfo()
1856 thread = m_current_process->GetThreadAtIndex(thread_index)) { in Handle_qfThreadInfo()
1857 LLDB_LOG(log, "iterated thread {0}(tid={2})", thread_index, in Handle_qfThreadInfo()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DThread.h1046 bool DiscardUserThreadPlansUpToIndex(uint32_t thread_index);
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp126 uint32_t thread_index = UINT32_MAX; in SetOptionValue() local
128 if (option_arg.getAsInteger(0, thread_index)) in SetOptionValue()
132 m_bp_opts.GetThreadSpec()->SetIndex(thread_index); in SetOptionValue()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp5293 uint32_t thread_index; in RunThreadPlan() local
5297 for (thread_index = 0; thread_index < num_threads; ++thread_index) { in RunThreadPlan()
5298 Thread *thread = thread_list.GetThreadAtIndex(thread_index).get(); in RunThreadPlan()