Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointName.cpp374 return bp_name->GetOptions().GetThreadSpec()->GetTID(); in GetThreadID()
387 bp_name->GetOptions().GetThreadSpec()->SetIndex(index); in SetThreadIndex()
401 return bp_name->GetOptions().GetThreadSpec()->GetIndex(); in GetThreadIndex()
414 bp_name->GetOptions().GetThreadSpec()->SetName(thread_name); in SetThreadName()
428 return ConstString(bp_name->GetOptions().GetThreadSpec()->GetName()) in GetThreadName()
442 bp_name->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
456 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-src/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp118 GetLocationOptions().GetThreadSpec()->SetIndex(index); in GetThreadID()
123 m_options_up->GetThreadSpec()->SetIndex(index);
140 GetLocationOptions().GetThreadSpec()->SetName(thread_name); in GetThreadIndex()
145 m_options_up->GetThreadSpec()->SetName(thread_name);
162 GetLocationOptions().GetThreadSpec()->SetQueueName(queue_name); in GetThreadName()
167 m_options_up->GetThreadSpec()->SetQueueName(queue_name);
H A DBreakpoint.cpp337 if (m_options.GetThreadSpec()->GetTID() == thread_id) in SetAutoContinue()
340 m_options.GetThreadSpec()->SetTID(thread_id); in SetThreadID()
352 if (m_options.GetThreadSpec()->GetIndex() == index) in GetThreadID()
355 m_options.GetThreadSpec()->SetIndex(index); in SetThreadIndex()
367 if (m_options.GetThreadSpec()->GetName() != nullptr && in GetThreadIndex()
368 ::strcmp(m_options.GetThreadSpec()->GetName(), thread_name) == 0)
371 m_options.GetThreadSpec()->SetName(thread_name); in SetThreadName()
383 if (m_options.GetThreadSpec()->GetQueueName() != nullptr && in GetThreadName()
384 ::strcmp(m_options.GetThreadSpec()->GetQueueName(), queue_name) == 0)
387 m_options.GetThreadSpec() in SetQueueName()
[all...]
H A DWatchpointOptions.cpp107 ThreadSpec *WatchpointOptions::GetThreadSpec() { in GetThreadSpec() function in WatchpointOptions
115 GetThreadSpec()->SetTID(thread_id); in SetThreadID()
H A DBreakpointOptions.cpp489 ThreadSpec *BreakpointOptions::GetThreadSpec() { in GetConditionText()
499 GetThreadSpec()->SetTID(thread_id); in GetThreadSpec()
497 ThreadSpec *BreakpointOptions::GetThreadSpec() { GetThreadSpec() function in BreakpointOptions
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h144 ThreadSpec *GetThreadSpec();
H A DBreakpointOptions.h320 ThreadSpec *GetThreadSpec();
/freebsd-src/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp137 m_bp_opts.GetThreadSpec()->SetName(option_arg.str().c_str()); in SetOptionValue()
140 m_bp_opts.GetThreadSpec()->SetQueueName(option_arg.str().c_str()); in SetOptionValue()
148 m_bp_opts.GetThreadSpec()->SetIndex(thread_index); in SetOptionValue()