Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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 bp_name->GetOptions().GetThreadSpec()->GetName(); in GetThreadName()
441 bp_name->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
455 return bp_name->GetOptions().GetThreadSpec()->GetQueueName(); in GetQueueName()
H A DSBBreakpoint.cpp378 bkpt_sp->GetOptions().GetThreadSpec()->SetIndex(index); in SetThreadIndex()
407 bkpt_sp->GetOptions().GetThreadSpec()->SetName(thread_name); in SetThreadName()
435 bkpt_sp->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
/openbsd-src/gnu/llvm/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp126 GetLocationOptions().GetThreadSpec()->SetIndex(index); in SetThreadIndex()
131 m_options_up->GetThreadSpec()->SetIndex(index); in SetThreadIndex()
148 GetLocationOptions().GetThreadSpec()->SetName(thread_name); in SetThreadName()
153 m_options_up->GetThreadSpec()->SetName(thread_name); in SetThreadName()
170 GetLocationOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
175 m_options_up->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
H A DBreakpoint.cpp347 if (m_options.GetThreadSpec()->GetTID() == thread_id) in SetThreadID()
350 m_options.GetThreadSpec()->SetTID(thread_id); in SetThreadID()
362 if (m_options.GetThreadSpec()->GetIndex() == index) in SetThreadIndex()
365 m_options.GetThreadSpec()->SetIndex(index); in SetThreadIndex()
377 if (m_options.GetThreadSpec()->GetName() != nullptr && in SetThreadName()
378 ::strcmp(m_options.GetThreadSpec()->GetName(), thread_name) == 0) in SetThreadName()
381 m_options.GetThreadSpec()->SetName(thread_name); in SetThreadName()
393 if (m_options.GetThreadSpec()->GetQueueName() != nullptr && in SetQueueName()
394 ::strcmp(m_options.GetThreadSpec()->GetQueueName(), queue_name) == 0) in SetQueueName()
397 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.cpp498 ThreadSpec *BreakpointOptions::GetThreadSpec() { in GetThreadSpec() function in BreakpointOptions
508 GetThreadSpec()->SetTID(thread_id); in SetThreadID()
/openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h149 ThreadSpec *GetThreadSpec();
H A DBreakpointOptions.h320 ThreadSpec *GetThreadSpec();
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp134 m_bp_opts.GetThreadSpec()->SetName(option_arg.str().c_str()); in SetOptionValue()
137 m_bp_opts.GetThreadSpec()->SetQueueName(option_arg.str().c_str()); in SetOptionValue()
145 m_bp_opts.GetThreadSpec()->SetIndex(thread_index); in SetOptionValue()