Home
last modified time | relevance | path

Searched refs:GetThreadAtIndex (Results 1 – 25 of 26) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBThreadCollection.cpp62 SBThread SBThreadCollection::GetThreadAtIndex(size_t idx) { in GetThreadAtIndex() function in SBThreadCollection
65 thread = m_opaque_sp->GetThreadAtIndex(idx); in GetThreadAtIndex()
H A DSBQueue.cpp160 lldb::SBThread GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() function in lldb_private::QueueImpl
310 SBThread SBQueue::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() function in SBQueue
311 SBThread th = m_opaque_sp->GetThreadAtIndex(idx); in GetThreadAtIndex()
H A DSBProcess.cpp450 SBThread SBProcess::GetThreadAtIndex(size_t index) { in GetThreadAtIndex() function in SBProcess
461 thread_sp = process_sp->GetThreadList().GetThreadAtIndex(index, can_update); in GetThreadAtIndex()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.cpp199 ThreadSP old_thread_sp(old_thread_list_copy.GetThreadAtIndex(i, false)); in UpdateThreadList()
721 m_thread_list.GetThreadAtIndex(0, false).get()); in EnableWatchpoint()
734 m_thread_list.GetThreadAtIndex(i, false).get()); in EnableWatchpoint()
780 m_thread_list.GetThreadAtIndex(i, false).get()); in DisableWatchpoint()
802 m_thread_list.GetThreadAtIndex(0, false).get()); in GetWatchpointSupportInfo()
875 m_thread_list.GetThreadAtIndex(i, false).get()); in IsAThreadRunning()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBThreadCollection.h31 lldb::SBThread GetThreadAtIndex(size_t idx);
H A DSBQueue.h46 lldb::SBThread GetThreadAtIndex(uint32_t);
H A DSBProcess.h92 lldb::SBThread GetThreadAtIndex(size_t index);
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadCollection.h45 lldb::ThreadSP GetThreadAtIndex(uint32_t idx);
H A DThreadList.h88 lldb::ThreadSP GetThreadAtIndex(uint32_t idx, bool can_update = true);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadCollection.cpp60 ThreadSP ThreadCollection::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() function in ThreadCollection
H A DThreadList.cpp89 ThreadSP ThreadList::GetThreadAtIndex(uint32_t idx, bool can_update) { in GetThreadAtIndex() function in ThreadList
598 thread_to_run = run_me_only_list.GetThreadAtIndex(0); in WillResume()
603 thread_to_run = run_me_only_list.GetThreadAtIndex(random_thread); in WillResume()
H A DProcess.cpp1134 thread = thread_list.GetThreadAtIndex(i); in HandleProcessStateChangedEvent()
1176 thread = thread_list.GetThreadAtIndex(0); in HandleProcessStateChangedEvent()
1460 old_thread_list.GetThreadAtIndex(i, false)->ClearBackingThread(); in UpdateThreadListIfNeeded()
4185 curr_thread_list.GetThreadAtIndex(idx)->GetIndexID(); in DoOnRemoval()
4214 lldb::ThreadSP thread_sp = curr_thread_list.GetThreadAtIndex(idx); in DoOnRemoval()
5504 Thread *thread = thread_list.GetThreadAtIndex(thread_index).get(); in RunThreadPlan()
5699 thread_id_array[idx] = curr_thread_list.GetThreadAtIndex(idx)->GetID(); in GetThreadStatus()
H A DExecutionContext.cpp532 thread_sp = process_sp->GetThreadList().GetThreadAtIndex(0); in SetTargetPtr()
H A DTarget.cpp2568 lldb::ThreadSP cur_thread_sp = cur_threadlist.GetThreadAtIndex(i); in RunStopHooks()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp218 core_thread_list.GetThreadAtIndex(core_idx, false), insert_idx); in UpdateThreadList()
269 core_thread_list.GetThreadAtIndex(core_number, false)); in CreateThreadFromThreadInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmdCmdThread.cpp115 lldb::SBThread thread = sbProcess.GetThreadAtIndex(i); in Execute()
H A DMICmnLLDBDebuggerHandleEvents.cpp966 const lldb::SBThread thread = sbProcess.GetThreadAtIndex(i); in HandleProcessEventStateSuspended()
1526 thread = process.GetThreadAtIndex(i); in UpdateSelectedThread()
1555 thread = process.GetThreadAtIndex(0); in UpdateSelectedThread()
1763 lldb::SBThread thread = sbProcess.GetThreadAtIndex(i); in ChkForStateChanges()
H A DMICmdCmdMiscellanous.cpp240 lldb::SBThread thread = sbProcess.GetThreadAtIndex(i); in Execute()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp503 (thread = process.GetThreadAtIndex(thread_idx)) != nullptr;
644 for (listed_thread = m_debugged_process_up->GetThreadAtIndex(thread_index);
646 listed_thread = m_debugged_process_up->GetThreadAtIndex(thread_index)) {
677 (thread = m_debugged_process_up->GetThreadAtIndex(i)) != nullptr;
1661 NativeThreadProtocol *thread = m_debugged_process_up->GetThreadAtIndex(0);
1877 thread = m_debugged_process_up->GetThreadAtIndex(thread_index);
1879 thread = m_debugged_process_up->GetThreadAtIndex(thread_index)) {
3151 return m_debugged_process_up->GetThreadAtIndex(0);
H A DProcessGDBRemote.cpp1724 ThreadSP old_thread_sp(old_thread_list_copy.GetThreadAtIndex(i, false)); in UpdateThreadList()
2552 ThreadSP thread_sp = threads.GetThreadAtIndex(i); in DoDestroy()
2588 ThreadSP thread_sp = threads.GetThreadAtIndex(i); in DoDestroy()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp88 NativeThreadProtocol *NativeProcessProtocol::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() function in NativeProcessProtocol
125 const_cast<NativeProcessProtocol *>(this)->GetThreadAtIndex(0)); in GetHardwareDebugSupportInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h168 NativeThreadProtocol *GetThreadAtIndex(uint32_t idx);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectThread.cpp905 process->GetThreadList().GetThreadAtIndex(idx).get(); in DoExecute()
940 Thread *thread = process->GetThreadList().GetThreadAtIndex(idx).get(); in DoExecute()
H A DCommandObjectProcess.cpp663 process->GetThreadList().GetThreadAtIndex(idx)->SetResumeState( in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DIOHandler.cpp2613 item[i].SetIdentifier(threads.GetThreadAtIndex(i)->GetID()); in TreeDelegateGenerateChildren()
3597 ThreadSP thread_sp = threads.GetThreadAtIndex(i); in MenuDelegateAction()

12