Searched refs:thread_spec (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp117 const ThreadSpec *thread_spec = local
120 if (thread_spec)
121 return thread_spec->GetTID();
139 const ThreadSpec *thread_spec = local
142 if (thread_spec)
143 return thread_spec->GetIndex();
161 const ThreadSpec *thread_spec = local
164 if (thread_spec)
165 return thread_spec->GetName();
183 const ThreadSpec *thread_spec local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBBreakpoint.cpp389 const ThreadSpec *thread_spec = local
391 if (thread_spec != nullptr)
392 thread_idx = thread_spec->GetIndex();
419 const ThreadSpec *thread_spec = local
421 if (thread_spec != nullptr)
422 name = thread_spec->GetName();
448 const ThreadSpec *thread_spec = local
450 if (thread_spec)
451 name = thread_spec->GetQueueName();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp4662 ThreadSpec *thread_spec = new ThreadSpec(); variable
4665 thread_spec->SetTID(m_options.m_thread_id);
4669 thread_spec->SetIndex(m_options.m_thread_index);
4672 thread_spec->SetName(m_options.m_thread_name.c_str());
4675 thread_spec->SetQueueName(m_options.m_queue_name.c_str());
4677 new_hook_sp->SetThreadSpecifier(thread_spec);

Completed in 134 milliseconds