Home
last modified time | relevance | path

Searched refs:GDBRemoteClientBase (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteClientBase.cpp29 GDBRemoteClientBase::ContinueDelegate::~ContinueDelegate() = default;
31 GDBRemoteClientBase::GDBRemoteClientBase(const char *comm_name, in GDBRemoteClientBase() function in GDBRemoteClientBase
36 StateType GDBRemoteClientBase::SendContinuePacketAndWaitForResponse( in SendContinuePacketAndWaitForResponse()
136 bool GDBRemoteClientBase::SendAsyncSignal(int signo) { in SendAsyncSignal()
147 bool GDBRemoteClientBase::Interrupt() { in Interrupt()
155 GDBRemoteClientBase::SendPacketAndWaitForResponse( in SendPacketAndWaitForResponse()
173 GDBRemoteClientBase::SendPacketAndReceiveResponseWithOutputSupport( in SendPacketAndReceiveResponseWithOutputSupport()
197 GDBRemoteClientBase::SendPacketAndWaitForResponseNoLock( in SendPacketAndWaitForResponseNoLock()
225 bool GDBRemoteClientBase::SendvContPacket(llvm::StringRef payload, in SendvContPacket()
250 bool GDBRemoteClientBase::ShouldStop(const UnixSignals &signals, in ShouldStop()
[all …]
DGDBRemoteClientBase.h19 class GDBRemoteClientBase : public GDBRemoteCommunication {
34 GDBRemoteClientBase(const char *comm_name, const char *listener_name);
58 Lock(GDBRemoteClientBase &comm, bool interrupt);
69 GDBRemoteClientBase &m_comm;
135 explicit ContinueLock(GDBRemoteClientBase &comm);
144 GDBRemoteClientBase &m_comm;
DCMakeLists.txt19 GDBRemoteClientBase.cpp
DGDBRemoteRegisterContext.cpp351 GDBRemoteClientBase::Lock lock(gdb_comm, false); in WriteRegisterBytes()
486 GDBRemoteClientBase::Lock lock(gdb_comm, false); in ReadAllRegisterValues()
552 GDBRemoteClientBase::Lock lock(gdb_comm, false); in WriteAllRegisterValues()
DProcessGDBRemote.h50 private GDBRemoteClientBase::ContinueDelegate {
DGDBRemoteCommunicationClient.h52 class GDBRemoteCommunicationClient : public GDBRemoteClientBase {
DGDBRemoteCommunicationClient.cpp57 : GDBRemoteClientBase("gdb-remote.client", "gdb-remote.client.rx_packet"), in GDBRemoteCommunicationClient()
4163 GDBRemoteClientBase::OnRunPacketSent(first); in OnRunPacketSent()
/external/llvm-project/lldb/unittests/Process/gdb-remote/
DGDBRemoteClientBaseTest.cpp26 struct MockDelegate : public GDBRemoteClientBase::ContinueDelegate {
41 struct TestClient : public GDBRemoteClientBase {
42 TestClient() : GDBRemoteClientBase("test.client", "test.client.listener") { in TestClient()