Home
last modified time | relevance | path

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

/external/lldb/source/API/
DSBBreakpoint.cpp404 const ThreadSpec *thread_spec = m_opaque_sp->GetOptions()->GetThreadSpecNoCreate(); in GetThreadIndex() local
405 if (thread_spec != NULL) in GetThreadIndex()
406 thread_idx = thread_spec->GetIndex(); in GetThreadIndex()
437 const ThreadSpec *thread_spec = m_opaque_sp->GetOptions()->GetThreadSpecNoCreate(); in GetThreadName() local
438 if (thread_spec != NULL) in GetThreadName()
439 name = thread_spec->GetName(); in GetThreadName()
468 const ThreadSpec *thread_spec = m_opaque_sp->GetOptions()->GetThreadSpecNoCreate(); in GetQueueName() local
469 if (thread_spec) in GetQueueName()
470 name = thread_spec->GetQueueName(); in GetQueueName()
/external/lldb/source/Commands/
DCommandObjectTarget.cpp4995 ThreadSpec *thread_spec = new ThreadSpec(); in DoExecute() local
4999 thread_spec->SetTID (m_options.m_thread_id); in DoExecute()
5003 thread_spec->SetIndex (m_options.m_thread_index); in DoExecute()
5006 thread_spec->SetName (m_options.m_thread_name.c_str()); in DoExecute()
5009 thread_spec->SetQueueName (m_options.m_queue_name.c_str()); in DoExecute()
5011 new_hook_sp->SetThreadSpecifier (thread_spec); in DoExecute()