Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp103 const ThreadSpec *thread_spec = in GetThreadID() local
106 if (thread_spec) in GetThreadID()
107 return thread_spec->GetTID(); in GetThreadID()
124 const ThreadSpec *thread_spec = in GetThreadIndex() local
127 if (thread_spec) in GetThreadIndex()
128 return thread_spec->GetIndex(); in GetThreadIndex()
145 const ThreadSpec *thread_spec = in GetThreadName() local
148 if (thread_spec) in GetThreadName()
149 return thread_spec->GetName(); in GetThreadName()
166 const ThreadSpec *thread_spec = in GetQueueName() local
[all …]
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBreakpoint.cpp389 const ThreadSpec *thread_spec = in GetThreadIndex() local
391 if (thread_spec != nullptr) in GetThreadIndex()
392 thread_idx = thread_spec->GetIndex(); in GetThreadIndex()
419 if (const ThreadSpec *thread_spec = in GetThreadName() local
421 return ConstString(thread_spec->GetName()).GetCString(); in GetThreadName()
446 if (const ThreadSpec *thread_spec = in GetQueueName() local
448 return ConstString(thread_spec->GetQueueName()).GetCString(); in GetQueueName()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp5046 ThreadSpec *thread_spec = new ThreadSpec(); in DoExecute() local
5049 thread_spec->SetTID(m_options.m_thread_id); in DoExecute()
5053 thread_spec->SetIndex(m_options.m_thread_index); in DoExecute()
5056 thread_spec->SetName(m_options.m_thread_name.c_str()); in DoExecute()
5059 thread_spec->SetQueueName(m_options.m_queue_name.c_str()); in DoExecute()
5061 new_hook_sp->SetThreadSpecifier(thread_spec); in DoExecute()