| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunication.cpp | 61 GDBRemoteCommunication::GDBRemoteCommunication(const char *comm_name, in GDBRemoteCommunication() function in GDBRemoteCommunication 80 GDBRemoteCommunication::~GDBRemoteCommunication() { in ~GDBRemoteCommunication() 127 GDBRemoteCommunication::PacketResult 139 GDBRemoteCommunication::PacketResult 203 GDBRemoteCommunication::PacketResult GDBRemoteCommunication::GetAck() { in GetAck() 216 GDBRemoteCommunication::PacketResult 233 GDBRemoteCommunication::PacketResult 247 GDBRemoteCommunication::PacketResult 651 GDBRemoteCommunication::PacketType 925 GDBRemoteCommunication *comm = (GDBRemoteCommunication *)arg; in ListenThread() [all …]
|
| H A D | GDBRemoteCommunication.h | 53 class GDBRemoteCommunication : public Communication { 82 ScopedTimeout(GDBRemoteCommunication &gdb_comm, 87 GDBRemoteCommunication &m_gdb_comm; 95 GDBRemoteCommunication(const char *comm_name, const char *listener_name); 97 ~GDBRemoteCommunication() override; 142 static llvm::Error ConnectLocally(GDBRemoteCommunication &client, 143 GDBRemoteCommunication &server); 224 DISALLOW_COPY_AND_ASSIGN(GDBRemoteCommunication); 233 lldb_private::process_gdb_remote::GDBRemoteCommunication::PacketResult> { 235 GDBRemoteCommunication::PacketResult &state,
|
| H A D | GDBRemoteCommunicationServer.cpp | 28 : GDBRemoteCommunication(comm_name, listener_name), m_exit_now(false) { in GDBRemoteCommunicationServer() 43 GDBRemoteCommunication::PacketResult 91 GDBRemoteCommunication::PacketResult 97 GDBRemoteCommunication::PacketResult 105 GDBRemoteCommunication::PacketResult 116 GDBRemoteCommunication::PacketResult 123 GDBRemoteCommunication::PacketResult 134 GDBRemoteCommunication::PacketResult
|
| H A D | GDBRemoteCommunicationServerCommon.cpp | 186 GDBRemoteCommunication::PacketResult 317 GDBRemoteCommunication::PacketResult 334 GDBRemoteCommunication::PacketResult 417 GDBRemoteCommunication::PacketResult 430 GDBRemoteCommunication::PacketResult 455 GDBRemoteCommunication::PacketResult 474 GDBRemoteCommunication::PacketResult 506 GDBRemoteCommunication::PacketResult 535 GDBRemoteCommunication::PacketResult 557 GDBRemoteCommunication::PacketResult [all …]
|
| H A D | GDBRemoteCommunicationServerLLGS.cpp | 339 GDBRemoteCommunication::PacketResult 569 GDBRemoteCommunication::PacketResult 935 GDBRemoteCommunication::PacketResult 1027 GDBRemoteCommunication::PacketResult 1093 GDBRemoteCommunication::PacketResult 1128 GDBRemoteCommunication::PacketResult 1186 GDBRemoteCommunication::PacketResult 1252 GDBRemoteCommunication::PacketResult 1274 GDBRemoteCommunication::PacketResult 1296 GDBRemoteCommunication::PacketResult [all …]
|
| H A D | GDBRemoteCommunicationReplayServer.cpp | 35 : GDBRemoteCommunication("gdb-remote.server", in GDBRemoteCommunicationReplayServer() 56 GDBRemoteCommunication::PacketResult 169 if (packet_result != GDBRemoteCommunication::PacketResult::Success && in ReceivePacket() 171 GDBRemoteCommunication::PacketResult::ErrorReplyTimeout) { in ReceivePacket()
|
| H A D | GDBRemoteCommunicationServerPlatform.cpp | 164 GDBRemoteCommunication::PacketResult 222 GDBRemoteCommunication::PacketResult 248 GDBRemoteCommunication::PacketResult 327 GDBRemoteCommunication::PacketResult 345 GDBRemoteCommunication::PacketResult 358 GDBRemoteCommunication::PacketResult 370 GDBRemoteCommunication::PacketResult 397 GDBRemoteCommunication::PacketResult
|
| H A D | GDBRemoteClientBase.cpp | 35 : GDBRemoteCommunication(comm_name, listener_name), m_async_count(0), in GDBRemoteClientBase() 159 GDBRemoteCommunication::PacketResult 177 GDBRemoteCommunication::PacketResult 201 GDBRemoteCommunication::PacketResult
|
| H A D | GDBRemoteCommunicationReplayServer.h | 38 class GDBRemoteCommunicationReplayServer : public GDBRemoteCommunication {
|
| H A D | GDBRemoteCommunicationServer.h | 26 class GDBRemoteCommunicationServer : public GDBRemoteCommunication {
|
| H A D | GDBRemoteClientBase.h | 20 class GDBRemoteClientBase : public GDBRemoteCommunication {
|
| H A D | ProcessGDBRemote.cpp | 533 GDBRemoteCommunication::PacketResult::Success) { in BuildDynamicRegisterInfo() 2619 GDBRemoteCommunication::ScopedTimeout(m_gdb_comm, in DoDestroy() 2790 GDBRemoteCommunication::PacketResult::Success) { in DoReadMemory() 2916 GDBRemoteCommunication::PacketResult::Success) { in FlashErase() 2945 GDBRemoteCommunication::PacketResult::Success) { in FlashDone() 3006 GDBRemoteCommunication::PacketResult::Success) { in DoWriteMemory() 4066 GDBRemoteCommunication::PacketResult::Success) in GetAuxvData() 4100 GDBRemoteCommunication::PacketResult::Success) { in GetExtendedInfoForThread() 4172 GDBRemoteCommunication::PacketResult::Success) { in GetLoadedDynamicLibrariesInfos_sender() 4205 GDBRemoteCommunication::PacketResult::Success) { in GetSharedCacheInfo() [all …]
|
| H A D | GDBRemoteCommunicationClient.cpp | 523 GDBRemoteCommunication::PacketResult 3288 GDBRemoteCommunication::PacketResult::Success && in SyncThreadState() 3320 GDBRemoteCommunication::PacketResult::Success) { in SendStartTracePacket() 3358 GDBRemoteCommunication::PacketResult::Success) { in SendStopTracePacket() 3412 GDBRemoteCommunication::PacketResult::Success) { in SendGetTraceConfigPacket() 3482 GDBRemoteCommunication::PacketResult::Success) { in SendGetTraceDataPacket() 3683 GDBRemoteCommunication::PacketResult res = in ReadExtFeature() 3686 if (res != GDBRemoteCommunication::PacketResult::Success) { in ReadExtFeature() 3947 if (send_status != GDBRemoteCommunication::PacketResult::Success) in SendSignalsToIgnore()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-server/ |
| H A D | lldb-platform.cpp | 361 GDBRemoteCommunication::PacketResult::Success) in main_platform()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/ |
| H A D | PlatformRemoteGDBServer.cpp | 430 process_gdb_remote::GDBRemoteCommunication::ScopedTimeout timeout( in LaunchProcess()
|
| /freebsd-12.1/lib/clang/liblldb/ |
| H A D | Makefile | 432 SRCS+= Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
|