Home
last modified time | relevance | path

Searched refs:NativeThreadProtocol (Results 1 – 19 of 19) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h23 class NativeThreadProtocol {
25 NativeThreadProtocol(NativeProcessProtocol &process, lldb::tid_t tid);
27 virtual ~NativeThreadProtocol() {} in ~NativeThreadProtocol()
H A DNativeProcessProtocol.h168 NativeThreadProtocol *GetThreadAtIndex(uint32_t idx);
170 NativeThreadProtocol *GetThreadByID(lldb::tid_t tid);
176 NativeThreadProtocol *GetCurrentThread() { in GetCurrentThread()
410 std::vector<std::unique_ptr<NativeThreadProtocol>> m_threads;
467 void FixupBreakpointPCAsNeeded(NativeThreadProtocol &thread);
477 NativeThreadProtocol *GetThreadByIDUnlocked(lldb::tid_t tid);
H A DNativeRegisterContext.h18 class NativeThreadProtocol; variable
26 NativeRegisterContext(NativeThreadProtocol &thread);
124 virtual NativeThreadProtocol &GetThread() { return m_thread; } in GetThread()
177 NativeThreadProtocol
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DNativeThreadProtocol.cpp18 NativeThreadProtocol::NativeThreadProtocol(NativeProcessProtocol &process, in NativeThreadProtocol() function in NativeThreadProtocol
H A DNativeProcessProtocol.cpp88 NativeThreadProtocol *NativeProcessProtocol::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex()
95 NativeThreadProtocol *
104 NativeThreadProtocol *NativeProcessProtocol::GetThreadByID(lldb::tid_t tid) { in GetThreadByID()
124 NativeThreadProtocol *thread( in GetHardwareDebugSupportInfo()
154 std::vector<NativeThreadProtocol *> watchpoint_established_threads; in SetWatchpoint()
245 std::vector<NativeThreadProtocol *> breakpoint_established_threads; in SetHardwareBreakpoint()
580 NativeThreadProtocol &thread) { in FixupBreakpointPCAsNeeded()
H A DNativeRegisterContext.cpp22 NativeRegisterContext::NativeRegisterContext(NativeThreadProtocol &thread) in NativeRegisterContext()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/
H A DNativeRegisterContextNetBSD.h23 NativeRegisterContextNetBSD(NativeThreadProtocol &native_thread,
33 NativeThreadProtocol &native_thread);
H A DNativeThreadNetBSD.h24 class NativeThreadNetBSD : public NativeThreadProtocol {
H A DNativeRegisterContextNetBSD_x86_64.h33 NativeThreadProtocol &native_thread);
H A DNativeRegisterContextNetBSD.cpp23 NativeThreadProtocol &native_thread, in NativeRegisterContextNetBSD()
H A DNativeThreadNetBSD.cpp29 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadNetBSD()
H A DNativeRegisterContextNetBSD_x86_64.cpp152 const ArchSpec &target_arch, NativeThreadProtocol &native_thread) { in CreateHostNativeRegisterContextNetBSD()
170 const ArchSpec &target_arch, NativeThreadProtocol &native_thread) in NativeRegisterContextNetBSD_x86_64()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-private-forward.h19 class NativeThreadProtocol; variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DNativeRegisterContextRegisterInfo.h26 NativeThreadProtocol &thread,
H A DNativeRegisterContextRegisterInfo.cpp17 NativeThreadProtocol &thread, in NativeRegisterContextRegisterInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp402 static JSONObject::SP GetRegistersAsJSON(NativeThreadProtocol &thread) {
502 for (NativeThreadProtocol *thread;
583 NativeThreadProtocol *thread = m_debugged_process_up->GetThreadByID(tid);
643 NativeThreadProtocol *listed_thread;
676 for (NativeThreadProtocol *thread;
1286 NativeThreadProtocol *thread = m_debugged_process_up->GetCurrentThread();
1874 NativeThreadProtocol *thread;
1916 NativeThreadProtocol *thread = GetThreadFromSuffix(packet);
2006 NativeThreadProtocol *thread = GetThreadFromSuffix(packet);
2796 NativeThreadProtocol *thread = GetThreadFromSuffix(packet);
[all …]
H A DGDBRemoteCommunicationServerLLGS.h208 NativeThreadProtocol *GetThreadFromSuffix(StringExtractorGDBRemote &packet);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
H A DNativeThreadDarwin.h37 class NativeThreadDarwin : public NativeThreadProtocol {
H A DNativeThreadDarwin.cpp44 : NativeThreadProtocol(process, unique_thread_id), in NativeThreadDarwin()