Searched refs:GDBRemoteClientBase (Results 1 – 8 of 8) sorted by relevance
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteClientBase.cpp | 29 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 …]
|
D | GDBRemoteClientBase.h | 19 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;
|
D | CMakeLists.txt | 19 GDBRemoteClientBase.cpp
|
D | GDBRemoteRegisterContext.cpp | 351 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()
|
D | ProcessGDBRemote.h | 50 private GDBRemoteClientBase::ContinueDelegate {
|
D | GDBRemoteCommunicationClient.h | 52 class GDBRemoteCommunicationClient : public GDBRemoteClientBase {
|
D | GDBRemoteCommunicationClient.cpp | 57 : 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/ |
D | GDBRemoteClientBaseTest.cpp | 26 struct MockDelegate : public GDBRemoteClientBase::ContinueDelegate { 41 struct TestClient : public GDBRemoteClientBase { 42 TestClient() : GDBRemoteClientBase("test.client", "test.client.listener") { in TestClient()
|