Home
last modified time | relevance | path

Searched refs:thread_spec (Results 1 – 2 of 2) sorted by relevance

/trueos/contrib/llvm/tools/lldb/source/API/
HDSBBreakpoint.cpp405 const ThreadSpec *thread_spec = m_opaque_sp->GetOptions()->GetThreadSpecNoCreate(); in GetThreadIndex() local
406 if (thread_spec != NULL) in GetThreadIndex()
407 thread_idx = thread_spec->GetIndex(); in GetThreadIndex()
438 const ThreadSpec *thread_spec = m_opaque_sp->GetOptions()->GetThreadSpecNoCreate(); in GetThreadName() local
439 if (thread_spec != NULL) in GetThreadName()
440 name = thread_spec->GetName(); in GetThreadName()
469 const ThreadSpec *thread_spec = m_opaque_sp->GetOptions()->GetThreadSpecNoCreate(); in GetQueueName() local
470 if (thread_spec) in GetQueueName()
471 name = thread_spec->GetQueueName(); in GetQueueName()
/trueos/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectTarget.cpp5044 ThreadSpec *thread_spec = new ThreadSpec(); in DoExecute() local
5048 thread_spec->SetTID (m_options.m_thread_id); in DoExecute()
5052 thread_spec->SetIndex (m_options.m_thread_index); in DoExecute()
5055 thread_spec->SetName (m_options.m_thread_name.c_str()); in DoExecute()
5058 thread_spec->SetQueueName (m_options.m_queue_name.c_str()); in DoExecute()
5060 new_hook_sp->SetThreadSpecifier (thread_spec); in DoExecute()