Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.h71 class GDBRemoteCommunication : public Communication {
94 ScopedTimeout(GDBRemoteCommunication &gdb_comm,
99 GDBRemoteCommunication &m_gdb_comm;
107 GDBRemoteCommunication();
109 ~GDBRemoteCommunication() override;
198 GDBRemoteCommunication(const GDBRemoteCommunication &) = delete;
199 const GDBRemoteCommunication &
200 operator=(const GDBRemoteCommunication &) = delete;
209 lldb_private::process_gdb_remote::GDBRemoteCommunication::PacketResult> {
211 GDBRemoteCommunication::PacketResult &state,
H A DGDBRemoteCommunicationServer.cpp28 : GDBRemoteCommunication(), m_exit_now(false) { in GDBRemoteCommunicationServer()
43 GDBRemoteCommunication::PacketResult
90 GDBRemoteCommunication::PacketResult
96 GDBRemoteCommunication::PacketResult
104 GDBRemoteCommunication::PacketResult
116 GDBRemoteCommunication::PacketResult
131 GDBRemoteCommunication::PacketResult
138 GDBRemoteCommunication::PacketResult
148 GDBRemoteCommunication::PacketResult
153 GDBRemoteCommunication::PacketResult
[all …]
H A DGDBRemoteCommunication.cpp48 GDBRemoteCommunication::GDBRemoteCommunication() in GDBRemoteCommunication() function in GDBRemoteCommunication
61 GDBRemoteCommunication::~GDBRemoteCommunication() { in ~GDBRemoteCommunication()
72 char GDBRemoteCommunication::CalculcateChecksum(llvm::StringRef payload) { in CalculcateChecksum()
81 size_t GDBRemoteCommunication::SendAck() { in SendAck()
91 size_t GDBRemoteCommunication::SendNack() { in SendNack()
101 GDBRemoteCommunication::PacketResult
102 GDBRemoteCommunication::SendPacketNoLock(llvm::StringRef payload) { in SendPacketNoLock()
113 GDBRemoteCommunication::PacketResult
114 GDBRemoteCommunication::SendNotificationPacketNoLock( in SendNotificationPacketNoLock()
136 GDBRemoteCommunication::PacketResult
[all …]
H A DGDBRemoteCommunicationServerCommon.cpp177 GDBRemoteCommunication::PacketResult
316 GDBRemoteCommunication::PacketResult
333 GDBRemoteCommunication::PacketResult
416 GDBRemoteCommunication::PacketResult
428 GDBRemoteCommunication::PacketResult
451 GDBRemoteCommunication::PacketResult
470 GDBRemoteCommunication::PacketResult
513 GDBRemoteCommunication::PacketResult
549 GDBRemoteCommunication::PacketResult
572 GDBRemoteCommunication::PacketResult
[all …]
H A DGDBRemoteCommunicationServerLLGS.cpp473 GDBRemoteCommunication::PacketResult
1000 GDBRemoteCommunication::PacketResult
1191 GDBRemoteCommunication::PacketResult
1286 GDBRemoteCommunication::PacketResult
1298 GDBRemoteCommunication::PacketResult
1318 GDBRemoteCommunication::PacketResult
1339 GDBRemoteCommunication::PacketResult
1357 GDBRemoteCommunication::PacketResult
1382 GDBRemoteCommunication::PacketResult
1404 GDBRemoteCommunication::PacketResult
[all …]
H A DGDBRemoteCommunicationServerPlatform.cpp148 GDBRemoteCommunication::PacketResult
200 GDBRemoteCommunication::PacketResult
227 GDBRemoteCommunication::PacketResult
297 GDBRemoteCommunication::PacketResult
315 GDBRemoteCommunication::PacketResult
347 GDBRemoteCommunication::PacketResult
360 GDBRemoteCommunication::PacketResult
372 GDBRemoteCommunication::PacketResult
399 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 DGDBRemoteCommunicationServer.h28 class GDBRemoteCommunicationServer : public GDBRemoteCommunication {
H A DGDBRemoteClientBase.h24 class GDBRemoteClientBase : public GDBRemoteCommunication, public Broadcaster {
H A DGDBRemoteCommunicationClient.cpp532 GDBRemoteCommunication::PacketResult
3649 GDBRemoteCommunication::PacketResult::Success && in SyncThreadState()
3663 GDBRemoteCommunication::PacketResult::Success) { in SendTraceSupported()
3695 GDBRemoteCommunication::PacketResult::Success) { in SendTraceStop()
3729 GDBRemoteCommunication::PacketResult::Success) { in SendTraceStart()
3763 GDBRemoteCommunication::PacketResult::Success) { in SendTraceGetState()
3796 GDBRemoteCommunication::PacketResult::Success) { in SendTraceGetBinaryData()
4032 GDBRemoteCommunication::PacketResult res = in ReadExtFeature()
4035 if (res != GDBRemoteCommunication::PacketResult::Success || in ReadExtFeature()
4281 if (send_status != GDBRemoteCommunication::PacketResult::Success) in SendSignalsToIgnore()
[all …]
H A DProcessGDBRemote.cpp453 GDBRemoteCommunication::PacketResult::Success) { in BuildDynamicRegisterInfo()
765 GDBRemoteCommunication::ScopedTimeout timeout(m_gdb_comm, in DoLaunch()
2690 GDBRemoteCommunication::PacketResult::Success) { in DoReadMemory()
2856 GDBRemoteCommunication::PacketResult::Success) { in FlashErase()
2887 GDBRemoteCommunication::PacketResult::Success) { in FlashDone()
2950 GDBRemoteCommunication::PacketResult::Success) { in DoWriteMemory()
4033 GDBRemoteCommunication::PacketResult::Success) { in GetExtendedInfoForThread()
4085 GDBRemoteCommunication::ScopedTimeout timeout(m_gdb_comm, in GetLoadedDynamicLibrariesInfos_sender()
4102 GDBRemoteCommunication::PacketResult::Success) { in GetLoadedDynamicLibrariesInfos_sender()
4124 GDBRemoteCommunication::PacketResult::Success) { in GetDynamicLoaderProcessState()
[all …]
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-platform.cpp253 GDBRemoteCommunication::PacketResult::Success) in client_handle()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp367 process_gdb_remote::GDBRemoteCommunication::ScopedTimeout timeout( in LaunchProcess()
/freebsd/lib/clang/liblldb/
H A DMakefile557 SRCS+= Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp