Home
last modified time | relevance | path

Searched refs:GetThreadSpec (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointName.cpp375 return bp_name->GetOptions().GetThreadSpec()->GetTID(); in GetThreadID()
388 bp_name->GetOptions().GetThreadSpec()->SetIndex(index); in SetThreadIndex()
402 return bp_name->GetOptions().GetThreadSpec()->GetIndex(); in GetThreadIndex()
415 bp_name->GetOptions().GetThreadSpec()->SetName(thread_name); in SetThreadName()
429 return ConstString(bp_name->GetOptions().GetThreadSpec()->GetName()) in GetThreadName()
443 bp_name->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
457 return ConstString(bp_name->GetOptions().GetThreadSpec()->GetQueueName()) in GetQueueName()
H A DSBBreakpoint.cpp377 bkpt_sp->GetOptions().GetThreadSpec()->SetIndex(index); in SetThreadIndex()
406 bkpt_sp->GetOptions().GetThreadSpec()->SetName(thread_name); in SetThreadName()
433 bkpt_sp->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp113 GetLocationOptions().GetThreadSpec()->SetIndex(index); in SetThreadIndex()
118 m_options_up->GetThreadSpec()->SetIndex(index); in SetThreadIndex()
134 GetLocationOptions().GetThreadSpec()->SetName(thread_name); in SetThreadName()
139 m_options_up->GetThreadSpec()->SetName(thread_name); in SetThreadName()
155 GetLocationOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
160 m_options_up->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
H A DBreakpoint.cpp386 if (m_options.GetThreadSpec()->GetTID() == thread_id) in SetThreadID()
389 m_options.GetThreadSpec()->SetTID(thread_id); in SetThreadID()
400 if (m_options.GetThreadSpec()->GetIndex() == index) in SetThreadIndex()
403 m_options.GetThreadSpec()->SetIndex(index); in SetThreadIndex()
414 if (m_options.GetThreadSpec()->GetName() != nullptr && in SetThreadName()
415 ::strcmp(m_options.GetThreadSpec()->GetName(), thread_name) == 0) in SetThreadName()
418 m_options.GetThreadSpec()->SetName(thread_name); in SetThreadName()
429 if (m_options.GetThreadSpec()->GetQueueName() != nullptr && in SetQueueName()
430 ::strcmp(m_options.GetThreadSpec()->GetQueueName(), queue_name) == 0) in SetQueueName()
433 m_options.GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
H A DWatchpointOptions.cpp107 ThreadSpec *WatchpointOptions::GetThreadSpec() { in GetThreadSpec() function in WatchpointOptions
115 GetThreadSpec()->SetTID(thread_id); in SetThreadID()
H A DBreakpointOptions.cpp482 ThreadSpec *BreakpointOptions::GetThreadSpec() { in GetThreadSpec() function in BreakpointOptions
492 GetThreadSpec()->SetTID(thread_id); in SetThreadID()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h144 ThreadSpec *GetThreadSpec();
H A DBreakpointOptions.h318 ThreadSpec *GetThreadSpec();
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp142 m_bp_opts.GetThreadSpec()->SetName(option_arg.str().c_str()); in SetOptionValue()
145 m_bp_opts.GetThreadSpec()->SetQueueName(option_arg.str().c_str()); in SetOptionValue()
154 m_bp_opts.GetThreadSpec()->SetIndex(thread_index); in SetOptionValue()