| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBThreadCollection.cpp | 81 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 D | SBQueue.cpp | 143 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 D | SBProcess.cpp | 408 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 D | SBThreadCollection.i | 35 GetThreadAtIndex (size_t idx);
|
| H A D | SBProcess.i | 138 for more details.") GetThreadAtIndex; 140 GetThreadAtIndex (size_t index); 482 return self.sbprocess.GetThreadAtIndex(key)
|
| H A D | SBQueue.i | 63 GetThreadAtIndex (uint32_t);
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBThreadCollection.h | 32 lldb::SBThread GetThreadAtIndex(size_t idx);
|
| H A D | SBQueue.h | 47 lldb::SBThread GetThreadAtIndex(uint32_t);
|
| H A D | SBProcess.h | 91 lldb::SBThread GetThreadAtIndex(size_t index);
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | ThreadCollection.h | 44 lldb::ThreadSP GetThreadAtIndex(uint32_t idx);
|
| H A D | ThreadList.h | 87 lldb::ThreadSP GetThreadAtIndex(uint32_t idx, bool can_update = true);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | ThreadCollection.cpp | 59 ThreadSP ThreadCollection::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() function in ThreadCollection
|
| H A D | ThreadList.cpp | 90 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 D | Process.cpp | 812 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 D | ExecutionContext.cpp | 522 thread_sp = process_sp->GetThreadList().GetThreadAtIndex(0); in SetTargetPtr()
|
| H A D | Target.cpp | 2645 lldb::ThreadSP cur_thread_sp = cur_threadlist.GetThreadAtIndex(i); in RunStopHooks()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/ |
| H A D | OperatingSystemPython.cpp | 220 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 D | GDBRemoteCommunicationServerLLGS.cpp | 695 (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 D | ProcessGDBRemote.cpp | 1648 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 D | NativeProcessProtocol.cpp | 98 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 D | NativeProcessProtocol.h | 201 NativeThreadProtocol *GetThreadAtIndex(uint32_t idx);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectThread.cpp | 686 process->GetThreadList().GetThreadAtIndex(idx).get(); in DoExecute() 720 Thread *thread = process->GetThreadList().GetThreadAtIndex(idx).get(); in DoExecute()
|
| H A D | CommandCompletions.cpp | 761 for (uint32_t idx = 0; (thread_sp = threads.GetThreadAtIndex(idx)); ++idx) { in ThreadIndexes()
|
| H A D | CommandObjectProcess.cpp | 568 process->GetThreadList().GetThreadAtIndex(idx)->SetResumeState( in DoExecute()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | IOHandlerCursesGUI.cpp | 3995 ThreadSP thread = threads.GetThreadAtIndex(i); in TreeDelegateGenerateChildren() 4025 ThreadSP thread = threads.GetThreadAtIndex(i); in TreeDelegateUpdateSelection() 5026 ThreadSP thread_sp = threads.GetThreadAtIndex(i); in MenuDelegateAction()
|