reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
322 ThreadSpec *GetThreadSpec();
377 bkpt_sp->GetOptions()->GetThreadSpec()->SetIndex(index); 407 bkpt_sp->GetOptions()->GetThreadSpec()->SetName(thread_name); 436 bkpt_sp->GetOptions()->GetThreadSpec()->SetQueueName(queue_name);tools/lldb/source/API/SBBreakpointName.cpp
384 return bp_name->GetOptions().GetThreadSpec()->GetTID(); 397 bp_name->GetOptions().GetThreadSpec()->SetIndex(index); 411 return bp_name->GetOptions().GetThreadSpec()->GetIndex(); 425 bp_name->GetOptions().GetThreadSpec()->SetName(thread_name); 440 return bp_name->GetOptions().GetThreadSpec()->GetName(); 454 bp_name->GetOptions().GetThreadSpec()->SetQueueName(queue_name); 469 return bp_name->GetOptions().GetThreadSpec()->GetQueueName();tools/lldb/source/Breakpoint/Breakpoint.cpp
351 if (m_options_up->GetThreadSpec()->GetTID() == thread_id) 354 m_options_up->GetThreadSpec()->SetTID(thread_id); 366 if (m_options_up->GetThreadSpec()->GetIndex() == index) 369 m_options_up->GetThreadSpec()->SetIndex(index); 381 if (m_options_up->GetThreadSpec()->GetName() != nullptr && 382 ::strcmp(m_options_up->GetThreadSpec()->GetName(), thread_name) == 0) 385 m_options_up->GetThreadSpec()->SetName(thread_name); 397 if (m_options_up->GetThreadSpec()->GetQueueName() != nullptr && 398 ::strcmp(m_options_up->GetThreadSpec()->GetQueueName(), queue_name) == 0) 401 m_options_up->GetThreadSpec()->SetQueueName(queue_name);tools/lldb/source/Breakpoint/BreakpointLocation.cpp
128 GetLocationOptions()->GetThreadSpec()->SetIndex(index); 133 m_options_up->GetThreadSpec()->SetIndex(index); 150 GetLocationOptions()->GetThreadSpec()->SetName(thread_name); 155 m_options_up->GetThreadSpec()->SetName(thread_name); 172 GetLocationOptions()->GetThreadSpec()->SetQueueName(queue_name); 177 m_options_up->GetThreadSpec()->SetQueueName(queue_name);tools/lldb/source/Breakpoint/BreakpointOptions.cpp
519 GetThreadSpec()->SetTID(thread_id);
tools/lldb/source/Commands/CommandObjectBreakpoint.cpp128 m_bp_opts.GetThreadSpec()->SetName(option_arg.str().c_str()); 131 m_bp_opts.GetThreadSpec()->SetQueueName(option_arg.str().c_str()); 141 m_bp_opts.GetThreadSpec()->SetIndex(thread_index);