Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBThreadCollection.cpp81 SBThread SBThreadCollection::GetThreadAtIndex(size_t idx) { in GetThreadAtIndex() function in SBThreadCollection
82 LLDB_RECORD_METHOD(lldb::SBThread, SBThreadCollection, GetThreadAtIndex, in GetThreadAtIndex()
87 thread = m_opaque_sp->GetThreadAtIndex(idx); in GetThreadAtIndex()
105 LLDB_REGISTER_METHOD(lldb::SBThread, SBThreadCollection, GetThreadAtIndex, in RegisterMethods()
H A DSBQueue.cpp143 lldb::SBThread GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() function in lldb_private::QueueImpl
292 SBThread SBQueue::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() function in SBQueue
293 LLDB_RECORD_METHOD(lldb::SBThread, SBQueue, GetThreadAtIndex, (uint32_t), in GetThreadAtIndex()
296 SBThread th = m_opaque_sp->GetThreadAtIndex(idx); in GetThreadAtIndex()
348 LLDB_REGISTER_METHOD(lldb::SBThread, SBQueue, GetThreadAtIndex, (uint32_t)); in RegisterMethods()
H A DSBProcess.cpp408 SBThread SBProcess::GetThreadAtIndex(size_t index) { in GetThreadAtIndex() function in SBProcess
409 LLDB_RECORD_METHOD(lldb::SBThread, SBProcess, GetThreadAtIndex, (size_t), in GetThreadAtIndex()
420 thread_sp = process_sp->GetThreadList().GetThreadAtIndex(index, can_update); in GetThreadAtIndex()
1380 LLDB_REGISTER_METHOD(lldb::SBThread, SBProcess, GetThreadAtIndex, (size_t)); in RegisterMethods()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBThreadCollection.i35 GetThreadAtIndex (size_t idx);
H A DSBProcess.i138 for more details.") GetThreadAtIndex;
140 GetThreadAtIndex (size_t index);
482 return self.sbprocess.GetThreadAtIndex(key)
H A DSBQueue.i63 GetThreadAtIndex (uint32_t);
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBThreadCollection.h32 lldb::SBThread GetThreadAtIndex(size_t idx);
H A DSBQueue.h47 lldb::SBThread GetThreadAtIndex(uint32_t);
H A DSBProcess.h91 lldb::SBThread GetThreadAtIndex(size_t index);
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadCollection.h44 lldb::ThreadSP GetThreadAtIndex(uint32_t idx);
H A DThreadList.h87 lldb::ThreadSP GetThreadAtIndex(uint32_t idx, bool can_update = true);
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DThreadCollection.cpp59 ThreadSP ThreadCollection::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() function in ThreadCollection
H A DThreadList.cpp90 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.cpp812 thread = thread_list.GetThreadAtIndex(i); in HandleProcessStateChangedEvent()
858 thread = thread_list.GetThreadAtIndex(0); in HandleProcessStateChangedEvent()
1149 old_thread_list.GetThreadAtIndex(i, false)->ClearBackingThread(); in UpdateThreadListIfNeeded()
3911 lldb::ThreadSP thread_sp = curr_thread_list.GetThreadAtIndex(idx); in ShouldStop()
3949 lldb::ThreadSP thread_sp = not_suspended_thread_list.GetThreadAtIndex(idx); in ShouldStop()
5298 Thread *thread = thread_list.GetThreadAtIndex(thread_index).get(); in RunThreadPlan()
5496 thread_id_array[idx] = curr_thread_list.GetThreadAtIndex(idx)->GetID(); in GetThreadStatus()
H A DExecutionContext.cpp522 thread_sp = process_sp->GetThreadList().GetThreadAtIndex(0); in SetTargetPtr()
H A DTarget.cpp2645 lldb::ThreadSP cur_thread_sp = cur_threadlist.GetThreadAtIndex(i); in RunStopHooks()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp220 core_thread_list.GetThreadAtIndex(core_idx, false), insert_idx); in UpdateThreadList()
271 core_thread_list.GetThreadAtIndex(core_number, false)); in CreateThreadFromThreadInfo()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp695 (thread = process.GetThreadAtIndex(thread_idx)) != nullptr; in GetJSONThreadsInfo()
833 for (listed_thread = m_current_process->GetThreadAtIndex(thread_index); in SendStopReplyPacketForThread()
835 listed_thread = m_current_process->GetThreadAtIndex(thread_index)) { in SendStopReplyPacketForThread()
868 (thread = m_current_process->GetThreadAtIndex(i)) != nullptr; ++i) { in SendStopReplyPacketForThread()
1744 NativeThreadProtocol *thread = m_current_process->GetThreadAtIndex(0); in Handle_qRegisterInfo()
1854 thread = m_current_process->GetThreadAtIndex(thread_index); in Handle_qfThreadInfo()
1856 thread = m_current_process->GetThreadAtIndex(thread_index)) { in Handle_qfThreadInfo()
2828 NativeThreadProtocol *thread = m_current_process->GetThreadAtIndex(0); in BuildTargetXml()
3647 return m_current_process->GetThreadAtIndex(0); in GetThreadFromSuffix()
H A DProcessGDBRemote.cpp1648 ThreadSP old_thread_sp(old_thread_list_copy.GetThreadAtIndex(i, false)); in DoUpdateThreadList()
2504 ThreadSP thread_sp = threads.GetThreadAtIndex(i); in DoDestroy()
2540 ThreadSP thread_sp = threads.GetThreadAtIndex(i); in DoDestroy()
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp98 NativeThreadProtocol *NativeProcessProtocol::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() function in NativeProcessProtocol
135 const_cast<NativeProcessProtocol *>(this)->GetThreadAtIndex(0)); in GetHardwareDebugSupportInfo()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h201 NativeThreadProtocol *GetThreadAtIndex(uint32_t idx);
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThread.cpp686 process->GetThreadList().GetThreadAtIndex(idx).get(); in DoExecute()
720 Thread *thread = process->GetThreadList().GetThreadAtIndex(idx).get(); in DoExecute()
H A DCommandCompletions.cpp761 for (uint32_t idx = 0; (thread_sp = threads.GetThreadAtIndex(idx)); ++idx) { in ThreadIndexes()
H A DCommandObjectProcess.cpp568 process->GetThreadList().GetThreadAtIndex(idx)->SetResumeState( in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp3995 ThreadSP thread = threads.GetThreadAtIndex(i); in TreeDelegateGenerateChildren()
4025 ThreadSP thread = threads.GetThreadAtIndex(i); in TreeDelegateUpdateSelection()
5026 ThreadSP thread_sp = threads.GetThreadAtIndex(i); in MenuDelegateAction()

12