/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | NativeProcessProtocol.cpp | 28 NativeProcessProtocol::NativeProcessProtocol(lldb::pid_t pid, int terminal_fd, in NativeProcessProtocol() function in NativeProcessProtocol 34 lldb_private::Status NativeProcessProtocol::Interrupt() { in Interrupt() 44 Status NativeProcessProtocol::IgnoreSignals(llvm::ArrayRef<int> signals) { in IgnoreSignals() 51 NativeProcessProtocol::GetMemoryRegionInfo(lldb::addr_t load_addr, in GetMemoryRegionInfo() 58 NativeProcessProtocol::ReadMemoryTags(int32_t type, lldb::addr_t addr, in ReadMemoryTags() 64 NativeProcessProtocol::WriteMemoryTags(int32_t type, lldb::addr_t addr, in WriteMemoryTags() 70 std::optional<WaitStatus> NativeProcessProtocol::GetExitStatus() { in GetExitStatus() 77 bool NativeProcessProtocol::SetExitStatus(WaitStatus status, in SetExitStatus() 100 NativeThreadProtocol *NativeProcessProtocol::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex() 108 NativeProcessProtocol::GetThreadByIDUnlocked(lldb::tid_t tid) { in GetThreadByIDUnlocked() [all …]
|
H A D | NativeThreadProtocol.cpp | 17 NativeThreadProtocol::NativeThreadProtocol(NativeProcessProtocol &process, in NativeThreadProtocol()
|
H A D | NativeRegisterContext.cpp | 345 NativeProcessProtocol &process = m_thread.GetProcess(); in ReadRegisterValueFromMemory() 384 NativeProcessProtocol &process = m_thread.GetProcess(); in WriteRegisterValueToMemory()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationServerLLGS.h | 34 public NativeProcessProtocol::NativeDelegate { 39 NativeProcessProtocol::Manager &process_manager); 76 void InitializeDelegate(NativeProcessProtocol *process) override; 78 void ProcessStateChanged(NativeProcessProtocol *process, 81 void DidExec(NativeProcessProtocol *process) override; 84 NewSubprocess(NativeProcessProtocol *parent_process, 85 std::unique_ptr<NativeProcessProtocol> child_process) override; 96 std::unique_ptr<NativeProcessProtocol> process_up; 103 NativeProcessProtocol::Manager &m_process_manager; 106 NativeProcessProtocol *m_current_process; [all …]
|
H A D | GDBRemoteCommunicationServerLLGS.cpp | 71 MainLoop &mainloop, NativeProcessProtocol::Manager &process_manager) in GDBRemoteCommunicationServerLLGS() 461 NativeProcessProtocol *process) { in InitializeDelegate() 475 NativeProcessProtocol *process) { in SendWResponse() 502 NativeProcessProtocol::Extension::multiprocess)) in SendWResponse() 728 GetJSONThreadsInfo(NativeProcessProtocol &process, bool abridged) { in GetJSONThreadsInfo() 799 NativeProcessProtocol &process = thread.GetProcess(); in PrepareStopReplyPacketForThread() 982 NativeProcessProtocol::Extension::multiprocess)); in PrepareStopReplyPacketForThread() 985 NativeProcessProtocol::Extension::fork)); in PrepareStopReplyPacketForThread() 988 NativeProcessProtocol::Extension::vfork)); in PrepareStopReplyPacketForThread() 999 NativeProcessProtocol &process, lldb::tid_t tid, bool force_synchronous) { in SendStopReplyPacketForThread() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/ |
H A D | NativeProcessProtocol.h | 49 class NativeProcessProtocol { 51 virtual ~NativeProcessProtocol() = default; 241 virtual void InitializeDelegate(NativeProcessProtocol *process) = 0; 243 virtual void ProcessStateChanged(NativeProcessProtocol *process, 246 virtual void DidExec(NativeProcessProtocol *process) = 0; 249 NewSubprocess(NativeProcessProtocol *parent_process, 250 std::unique_ptr<NativeProcessProtocol> child_process) = 0; 301 virtual llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 323 virtual llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 452 NativeProcessProtocol(lldb::pid_t pid, int terminal_fd,
|
H A D | NativeThreadProtocol.h | 26 NativeThreadProtocol(NativeProcessProtocol &process, lldb::tid_t tid); 41 NativeProcessProtocol &GetProcess() { return m_process; } in GetProcess() 60 NativeProcessProtocol &m_process;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/ |
H A D | NativeProcessELF.h | 22 class NativeProcessELF : public NativeProcessProtocol { 23 using NativeProcessProtocol::NativeProcessProtocol;
|
H A D | NativeProcessELF.cpp | 185 NativeProcessProtocol::NotifyDidExec(); in NotifyDidExec()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
H A D | NativeProcessNetBSD.h | 30 class Manager : public NativeProcessProtocol::Manager { 32 using NativeProcessProtocol::Manager::Manager; 34 llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 38 llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 44 // NativeProcessProtocol Interface
|
H A D | NativeProcessNetBSD.cpp | 58 llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 111 llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 113 lldb::pid_t pid, NativeProcessProtocol::NativeDelegate &native_delegate) { in Attach()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
H A D | NativeProcessFreeBSD.h | 33 class Manager : public NativeProcessProtocol::Manager { 35 using NativeProcessProtocol::Manager::Manager; 37 llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 41 llvm::Expected<std::unique_ptr<NativeProcessProtocol>>
|
H A D | NativeProcessFreeBSD.cpp | 68 llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 124 llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 126 lldb::pid_t pid, NativeProcessProtocol::NativeDelegate &native_delegate) { in Attach() 447 return NativeProcessProtocol::GetSoftwareBreakpointTrapOpcode(size_hint); in GetSoftwareBreakpointTrapOpcode()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | NativeProcessSoftwareSingleStep.cpp | 23 NativeProcessProtocol &m_process; 29 EmulatorBaton(NativeProcessProtocol &process, in EmulatorBaton() 114 NativeProcessProtocol &process) { in SetSoftwareBreakpointOnPC() 132 NativeProcessProtocol &process = thread.GetProcess(); in SetupSoftwareSingleStepping()
|
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/ |
H A D | lldb-gdbserver.cpp | 75 class NativeProcessManager : public NativeProcessProtocol::Manager { 78 : NativeProcessProtocol::Manager(mainloop) {} 80 llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 82 NativeProcessProtocol::NativeDelegate &native_delegate) override { 85 llvm::Expected<std::unique_ptr<NativeProcessProtocol>> 87 NativeProcessProtocol::NativeDelegate &native_delegate) override {
|
/freebsd/contrib/llvm-project/lldb/include/lldb/ |
H A D | lldb-private-forward.h | 14 class NativeProcessProtocol; variable
|
/freebsd/lib/clang/liblldb/ |
H A D | Makefile | 261 SRCS+= Host/common/NativeProcessProtocol.cpp
|