Home
last modified time | relevance | path

Searched refs:GDBRemoteCommunication (Results 1 – 17 of 17) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.h83 class GDBRemoteCommunication : public Communication {
106 ScopedTimeout(GDBRemoteCommunication &gdb_comm,
111 GDBRemoteCommunication &m_gdb_comm;
119 GDBRemoteCommunication();
121 ~GDBRemoteCommunication() override;
163 static llvm::Error ConnectLocally(GDBRemoteCommunication &client,
164 GDBRemoteCommunication &server);
231 GDBRemoteCommunication(const GDBRemoteCommunication &) = delete;
232 const GDBRemoteCommunication &
233 operator=(const GDBRemoteCommunication &) = delete;
[all …]
H A DGDBRemoteCommunicationServer.cpp28 : GDBRemoteCommunication(), m_exit_now(false) { in GDBRemoteCommunicationServer()
43 GDBRemoteCommunication::PacketResult
90 GDBRemoteCommunication::PacketResult
96 GDBRemoteCommunication::PacketResult
104 GDBRemoteCommunication::PacketResult
115 GDBRemoteCommunication::PacketResult
130 GDBRemoteCommunication::PacketResult
137 GDBRemoteCommunication::PacketResult
147 GDBRemoteCommunication::PacketResult
152 GDBRemoteCommunication::PacketResult
[all …]
H A DGDBRemoteCommunication.cpp60 GDBRemoteCommunication::GDBRemoteCommunication() in GDBRemoteCommunication() function in GDBRemoteCommunication
73 GDBRemoteCommunication::~GDBRemoteCommunication() { in ~GDBRemoteCommunication()
84 char GDBRemoteCommunication::CalculcateChecksum(llvm::StringRef payload) { in CalculcateChecksum()
93 size_t GDBRemoteCommunication::SendAck() { in SendAck()
103 size_t GDBRemoteCommunication::SendNack() { in SendNack()
113 GDBRemoteCommunication::PacketResult
114 GDBRemoteCommunication::SendPacketNoLock(llvm::StringRef payload) { in SendPacketNoLock()
125 GDBRemoteCommunication::PacketResult
126 GDBRemoteCommunication::SendNotificationPacketNoLock( in SendNotificationPacketNoLock()
148 GDBRemoteCommunication::PacketResult
[all …]
H A DGDBRemoteCommunicationServerCommon.cpp177 GDBRemoteCommunication::PacketResult
313 GDBRemoteCommunication::PacketResult
330 GDBRemoteCommunication::PacketResult
413 GDBRemoteCommunication::PacketResult
425 GDBRemoteCommunication::PacketResult
448 GDBRemoteCommunication::PacketResult
467 GDBRemoteCommunication::PacketResult
499 GDBRemoteCommunication::PacketResult
548 GDBRemoteCommunication::PacketResult
571 GDBRemoteCommunication::PacketResult
[all …]
H A DGDBRemoteCommunicationServerLLGS.cpp475 GDBRemoteCommunication::PacketResult
997 GDBRemoteCommunication::PacketResult
1188 GDBRemoteCommunication::PacketResult
1282 GDBRemoteCommunication::PacketResult
1294 GDBRemoteCommunication::PacketResult
1314 GDBRemoteCommunication::PacketResult
1335 GDBRemoteCommunication::PacketResult
1353 GDBRemoteCommunication::PacketResult
1378 GDBRemoteCommunication::PacketResult
1400 GDBRemoteCommunication::PacketResult
[all …]
H A DGDBRemoteCommunicationServerPlatform.cpp225 GDBRemoteCommunication::PacketResult
286 GDBRemoteCommunication::PacketResult
311 GDBRemoteCommunication::PacketResult
389 GDBRemoteCommunication::PacketResult
407 GDBRemoteCommunication::PacketResult
439 GDBRemoteCommunication::PacketResult
452 GDBRemoteCommunication::PacketResult
464 GDBRemoteCommunication::PacketResult
491 GDBRemoteCommunication::PacketResult
H A DGDBRemoteClientBase.cpp35 : GDBRemoteCommunication(), Broadcaster(nullptr, comm_name), in GDBRemoteClientBase()
180 GDBRemoteCommunication::PacketResult
197 GDBRemoteCommunication::PacketResult
214 GDBRemoteCommunication::PacketResult
237 GDBRemoteCommunication::PacketResult
H A DCMakeLists.txt23 GDBRemoteCommunication.cpp
H A DGDBRemoteCommunicationServer.h28 class GDBRemoteCommunicationServer : public GDBRemoteCommunication {
H A DGDBRemoteClientBase.h19 class GDBRemoteClientBase : public GDBRemoteCommunication, public Broadcaster {
H A DGDBRemoteCommunicationClient.cpp489 GDBRemoteCommunication::PacketResult
3556 GDBRemoteCommunication::PacketResult::Success && in SyncThreadState()
3570 GDBRemoteCommunication::PacketResult::Success) { in SendTraceSupported()
3603 GDBRemoteCommunication::PacketResult::Success) { in SendTraceStop()
3638 GDBRemoteCommunication::PacketResult::Success) { in SendTraceStart()
3673 GDBRemoteCommunication::PacketResult::Success) { in SendTraceGetState()
3707 GDBRemoteCommunication::PacketResult::Success) { in SendTraceGetBinaryData()
3943 GDBRemoteCommunication::PacketResult res = in ReadExtFeature()
3946 if (res != GDBRemoteCommunication::PacketResult::Success || in ReadExtFeature()
4199 if (send_status != GDBRemoteCommunication::PacketResult::Success) in SendSignalsToIgnore()
[all …]
H A DProcessGDBRemote.cpp437 GDBRemoteCommunication::PacketResult::Success) { in BuildDynamicRegisterInfo()
749 GDBRemoteCommunication::ScopedTimeout timeout(m_gdb_comm, in DoLaunch()
2500 GDBRemoteCommunication::PacketResult::Success) { in DoReadMemory()
2657 GDBRemoteCommunication::PacketResult::Success) { in FlashErase()
2687 GDBRemoteCommunication::PacketResult::Success) { in FlashDone()
2748 GDBRemoteCommunication::PacketResult::Success) { in DoWriteMemory()
3751 GDBRemoteCommunication::PacketResult::Success) { in GetExtendedInfoForThread()
3806 GDBRemoteCommunication::ScopedTimeout timeout(m_gdb_comm, in GetLoadedDynamicLibrariesInfos_sender()
3823 GDBRemoteCommunication::PacketResult::Success) { in GetLoadedDynamicLibrariesInfos_sender()
3846 GDBRemoteCommunication::PacketResult::Success) { in GetDynamicLoaderProcessState()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Plugins/Process/gdb-remote/
H A DBUILD.gn37 "GDBRemoteCommunication.cpp",
/openbsd-src/gnu/usr.bin/clang/liblldbPluginProcess/
H A DMakefile25 GDBRemoteCommunication.cpp \
/openbsd-src/gnu/llvm/lldb/tools/lldb-server/
H A Dlldb-platform.cpp372 GDBRemoteCommunication::PacketResult::Success) in main_platform()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp368 process_gdb_remote::GDBRemoteCommunication::ScopedTimeout timeout( in LaunchProcess()
/openbsd-src/gnu/llvm/clang/docs/tools/
H A Dclang-formatted-files.txt4305 lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h