Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp118 const ThreadSpec *thread_spec = in GetThreadID() local
121 if (thread_spec) in GetThreadID()
122 return thread_spec->GetTID(); in GetThreadID()
140 const ThreadSpec *thread_spec = in GetThreadIndex() local
143 if (thread_spec) in GetThreadIndex()
144 return thread_spec->GetIndex(); in GetThreadIndex()
162 const ThreadSpec *thread_spec = in GetThreadName() local
165 if (thread_spec) in GetThreadName()
166 return thread_spec->GetName(); in GetThreadName()
184 const ThreadSpec *thread_spec = in GetQueueName() local
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBBreakpoint.cpp343 const ThreadSpec *thread_spec = in GetThreadIndex() local
345 if (thread_spec != nullptr) in GetThreadIndex()
346 thread_idx = thread_spec->GetIndex(); in GetThreadIndex()
372 const ThreadSpec *thread_spec = in GetThreadName() local
374 if (thread_spec != nullptr) in GetThreadName()
375 name = thread_spec->GetName(); in GetThreadName()
401 const ThreadSpec *thread_spec = in GetQueueName() local
403 if (thread_spec) in GetQueueName()
404 name = thread_spec->GetQueueName(); in GetQueueName()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectTarget.cpp4781 ThreadSpec *thread_spec = new ThreadSpec(); in DoExecute() local
4784 thread_spec->SetTID(m_options.m_thread_id); in DoExecute()
4788 thread_spec->SetIndex(m_options.m_thread_index); in DoExecute()
4791 thread_spec->SetName(m_options.m_thread_name.c_str()); in DoExecute()
4794 thread_spec->SetQueueName(m_options.m_queue_name.c_str()); in DoExecute()
4796 new_hook_sp->SetThreadSpecifier(thread_spec); in DoExecute()