Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/ctf/
H A DCommandObjectThreadTraceExportCTF.cpp39 int64_t thread_index; in SetOptionValue() local
40 if (option_arg.empty() || option_arg.getAsInteger(0, thread_index) || in SetOptionValue()
41 thread_index < 0) in SetOptionValue()
45 m_thread_index = thread_index; in SetOptionValue()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp4203 for (auto [thread_sp, thread_index] : not_suspended_threads) { in ShouldStop()
4213 if (thread_sp->GetIndexID() != thread_index) { in ShouldStop()
4217 thread_sp.get(), thread_index, thread_sp->GetIndexID()); in ShouldStop()
5591 uint32_t thread_index; in RunThreadPlan() local
5595 for (thread_index = 0; thread_index < num_threads; ++thread_index) { in RunThreadPlan()
5596 Thread *thread = thread_list.GetThreadAtIndex(thread_index).get(); in RunThreadPlan()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThread.h1079 bool DiscardUserThreadPlansUpToIndex(uint32_t thread_index);
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp143 uint32_t thread_index = UINT32_MAX; in SetOptionValue() local
144 if (option_arg.getAsInteger(0, thread_index)) { in SetOptionValue()
148 m_bp_opts.GetThreadSpec()->SetIndex(thread_index); in SetOptionValue()