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

Declarations

tools/lldb/include/lldb/Target/ThreadList.h
   87   lldb::ThreadSP GetThreadAtIndex(uint32_t idx, bool can_update = true);

References

tools/lldb/source/API/SBProcess.cpp
  440     thread_sp = process_sp->GetThreadList().GetThreadAtIndex(index, can_update);
tools/lldb/source/Commands/CommandObjectProcess.cpp
  595           process->GetThreadList().GetThreadAtIndex(idx)->SetResumeState(
tools/lldb/source/Commands/CommandObjectTarget.cpp
 3340     ThreadSP thread(threads.GetThreadAtIndex(0));
tools/lldb/source/Commands/CommandObjectThread.cpp
  884                 process->GetThreadList().GetThreadAtIndex(idx).get();
  919           Thread *thread = process->GetThreadList().GetThreadAtIndex(idx).get();
tools/lldb/source/Core/IOHandler.cpp
 2586           item[i].SetIdentifier(threads.GetThreadAtIndex(i)->GetID());
 3566           ThreadSP thread_sp = threads.GetThreadAtIndex(i);
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.cpp
  107         ThreadSP thread_sp(m_process->GetThreadList().GetThreadAtIndex(0));
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp
  133         ThreadSP thread_sp(m_process->GetThreadList().GetThreadAtIndex(0));
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 6137           ThreadSP thread_sp(thread_list.GetThreadAtIndex(thread_idx));
tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
  217           core_thread_list.GetThreadAtIndex(core_idx, false), insert_idx);
  268         core_thread_list.GetThreadAtIndex(core_number, false));
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 1678     ThreadSP old_thread_sp(old_thread_list_copy.GetThreadAtIndex(i, false));
 2510             ThreadSP thread_sp = threads.GetThreadAtIndex(i);
 2546               ThreadSP thread_sp = threads.GetThreadAtIndex(i);
tools/lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
  528       new_thread_list.AddThread(old_thread_list.GetThreadAtIndex(i, false));
tools/lldb/source/Target/ExecutionContext.cpp
  523                 thread_sp = process_sp->GetThreadList().GetThreadAtIndex(0);
tools/lldb/source/Target/Process.cpp
  887             thread = thread_list.GetThreadAtIndex(i);
  929               thread = thread_list.GetThreadAtIndex(0);
 1208             old_thread_list.GetThreadAtIndex(i, false)->ClearBackingThread();
 3954           curr_thread_list.GetThreadAtIndex(idx)->GetIndexID();
 3983       lldb::ThreadSP thread_sp = curr_thread_list.GetThreadAtIndex(idx);
 5276               Thread *thread = thread_list.GetThreadAtIndex(thread_index).get();
 5472       thread_id_array[idx] = curr_thread_list.GetThreadAtIndex(idx)->GetID();
tools/lldb/source/Target/Target.cpp
 2587     lldb::ThreadSP cur_thread_sp = cur_threadlist.GetThreadAtIndex(i);
tools/lldb/source/Target/ThreadList.cpp
  598       thread_to_run = run_me_only_list.GetThreadAtIndex(0);
  603       thread_to_run = run_me_only_list.GetThreadAtIndex(random_thread);