Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp115 const ThreadSpec *thread_spec = in GetThreadID() local
118 if (thread_spec) in GetThreadID()
119 return thread_spec->GetTID(); in GetThreadID()
137 const ThreadSpec *thread_spec = in GetThreadIndex() local
140 if (thread_spec) in GetThreadIndex()
141 return thread_spec->GetIndex(); in GetThreadIndex()
159 const ThreadSpec *thread_spec = in GetThreadName() local
162 if (thread_spec) in GetThreadName()
163 return thread_spec->GetName(); in GetThreadName()
181 const ThreadSpec *thread_spec = in GetQueueName() local
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBBreakpoint.cpp399 const ThreadSpec *thread_spec = in GetThreadIndex() local
401 if (thread_spec != nullptr) in GetThreadIndex()
402 thread_idx = thread_spec->GetIndex(); in GetThreadIndex()
429 const ThreadSpec *thread_spec = in GetThreadName() local
431 if (thread_spec != nullptr) in GetThreadName()
432 name = thread_spec->GetName(); in GetThreadName()
458 const ThreadSpec *thread_spec = in GetQueueName() local
460 if (thread_spec) in GetQueueName()
461 name = thread_spec->GetQueueName(); in GetQueueName()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp4663 ThreadSpec *thread_spec = new ThreadSpec(); in DoExecute() local
4666 thread_spec->SetTID(m_options.m_thread_id); in DoExecute()
4670 thread_spec->SetIndex(m_options.m_thread_index); in DoExecute()
4673 thread_spec->SetName(m_options.m_thread_name.c_str()); in DoExecute()
4676 thread_spec->SetQueueName(m_options.m_queue_name.c_str()); in DoExecute()
4678 new_hook_sp->SetThreadSpecifier(thread_spec); in DoExecute()