Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBBreakpointName.cpp371 return bp_name->GetOptions().GetThreadSpec()->GetTID(); in GetThreadID()
386 bp_name->GetOptions().GetThreadSpec()->SetIndex(index); in SetThreadIndex()
401 return bp_name->GetOptions().GetThreadSpec()->GetIndex(); in GetThreadIndex()
416 bp_name->GetOptions().GetThreadSpec()->SetName(thread_name); in SetThreadName()
431 return bp_name->GetOptions().GetThreadSpec()->GetName(); in GetThreadName()
446 bp_name->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
461 return bp_name->GetOptions().GetThreadSpec()->GetQueueName(); in GetQueueName()
H A DSBBreakpoint.cpp333 bkpt_sp->GetOptions()->GetThreadSpec()->SetIndex(index); in SetThreadIndex()
362 bkpt_sp->GetOptions()->GetThreadSpec()->SetName(thread_name); in SetThreadName()
391 bkpt_sp->GetOptions()->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpoint.cpp355 if (m_options_up->GetThreadSpec()->GetTID() == thread_id) in SetThreadID()
358 m_options_up->GetThreadSpec()->SetTID(thread_id); in SetThreadID()
370 if (m_options_up->GetThreadSpec()->GetIndex() == index) in SetThreadIndex()
373 m_options_up->GetThreadSpec()->SetIndex(index); in SetThreadIndex()
385 if (m_options_up->GetThreadSpec()->GetName() != nullptr && in SetThreadName()
386 ::strcmp(m_options_up->GetThreadSpec()->GetName(), thread_name) == 0) in SetThreadName()
389 m_options_up->GetThreadSpec()->SetName(thread_name); in SetThreadName()
401 if (m_options_up->GetThreadSpec()->GetQueueName() != nullptr && in SetQueueName()
402 ::strcmp(m_options_up->GetThreadSpec()->GetQueueName(), queue_name) == 0) in SetQueueName()
405 m_options_up->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
H A DBreakpointLocation.cpp129 GetLocationOptions()->GetThreadSpec()->SetIndex(index); in SetThreadIndex()
134 m_options_ap->GetThreadSpec()->SetIndex(index); in SetThreadIndex()
151 GetLocationOptions()->GetThreadSpec()->SetName(thread_name); in SetThreadName()
156 m_options_ap->GetThreadSpec()->SetName(thread_name); in SetThreadName()
173 GetLocationOptions()->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
178 m_options_ap->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
H A DWatchpointOptions.cpp120 ThreadSpec *WatchpointOptions::GetThreadSpec() { in GetThreadSpec() function in WatchpointOptions
128 GetThreadSpec()->SetTID(thread_id); in SetThreadID()
H A DBreakpointOptions.cpp528 ThreadSpec *BreakpointOptions::GetThreadSpec() { in GetThreadSpec() function in BreakpointOptions
539 GetThreadSpec()->SetTID(thread_id); in SetThreadID()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h178 ThreadSpec *GetThreadSpec();
H A DBreakpointOptions.h373 ThreadSpec *GetThreadSpec();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp141 m_bp_opts.GetThreadSpec()->SetName(option_arg.str().c_str()); in SetOptionValue()
144 m_bp_opts.GetThreadSpec()->SetQueueName(option_arg.str().c_str()); in SetOptionValue()
154 m_bp_opts.GetThreadSpec()->SetIndex(thread_index); in SetOptionValue()