reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Target/ThreadList.h
   99   lldb::ThreadSP FindThreadByIndexID(uint32_t index_id, bool can_update = true);

References

tools/lldb/source/API/SBProcess.cpp
  756         process_sp->GetThreadList().FindThreadByIndexID(index_id, can_update);
tools/lldb/source/Commands/CommandObjectThread.cpp
  130             process->GetThreadList().FindThreadByIndexID(thread_idx);
  167         ThreadSP thread = process->GetThreadList().FindThreadByIndexID(
  590           process->GetThreadList().FindThreadByIndexID(step_thread_idx).get();
  860               process->GetThreadList().FindThreadByIndexID(thread_idx).get();
 1132                      .FindThreadByIndexID(m_options.m_thread_idx)
 1341         process->GetThreadList().FindThreadByIndexID(index_id).get();
tools/lldb/source/Target/Process.cpp
 4989                   GetThreadList().FindThreadByIndexID(thread_idx_id);
 5361     thread = GetThreadList().FindThreadByIndexID(thread_idx_id, true).get();
tools/lldb/source/Target/ThreadList.cpp
  677   ThreadSP selected_thread_sp(FindThreadByIndexID(index_id));