Lines Matching refs:GDBRemoteCommunication

59 GDBRemoteCommunication::GDBRemoteCommunication()  in GDBRemoteCommunication()  function in GDBRemoteCommunication
72 GDBRemoteCommunication::~GDBRemoteCommunication() { in ~GDBRemoteCommunication()
83 char GDBRemoteCommunication::CalculcateChecksum(llvm::StringRef payload) { in CalculcateChecksum()
92 size_t GDBRemoteCommunication::SendAck() { in SendAck()
102 size_t GDBRemoteCommunication::SendNack() { in SendNack()
112 GDBRemoteCommunication::PacketResult
113 GDBRemoteCommunication::SendPacketNoLock(llvm::StringRef payload) { in SendPacketNoLock()
124 GDBRemoteCommunication::PacketResult
125 GDBRemoteCommunication::SendNotificationPacketNoLock( in SendNotificationPacketNoLock()
147 GDBRemoteCommunication::PacketResult
148 GDBRemoteCommunication::SendRawPacketNoLock(llvm::StringRef packet, in SendRawPacketNoLock()
209 GDBRemoteCommunication::PacketResult GDBRemoteCommunication::GetAck() { in GetAck()
222 GDBRemoteCommunication::PacketResult
223 GDBRemoteCommunication::ReadPacket(StringExtractorGDBRemote &response, in ReadPacket()
240 GDBRemoteCommunication::PacketResult
241 GDBRemoteCommunication::WaitForPacketNoLock(StringExtractorGDBRemote &packet, in WaitForPacketNoLock()
387 bool GDBRemoteCommunication::DecompressPacket() { in DecompressPacket()
616 GDBRemoteCommunication::PacketType
617 GDBRemoteCommunication::CheckForPacket(const uint8_t *src, size_t src_len, in CheckForPacket()
649 return GDBRemoteCommunication::PacketType::Standard; in CheckForPacket()
717 return GDBRemoteCommunication::PacketType::Invalid; in CheckForPacket()
827 return GDBRemoteCommunication::PacketType::Notify; in CheckForPacket()
829 return GDBRemoteCommunication::PacketType::Standard; in CheckForPacket()
833 return GDBRemoteCommunication::PacketType::Invalid; in CheckForPacket()
836 Status GDBRemoteCommunication::StartListenThread(const char *hostname, in StartListenThread()
849 listen_url, [this] { return GDBRemoteCommunication::ListenThread(); }); in StartListenThread()
857 bool GDBRemoteCommunication::JoinListenThread() { in JoinListenThread()
863 lldb::thread_result_t GDBRemoteCommunication::ListenThread() { in ListenThread()
883 Status GDBRemoteCommunication::StartDebugserverProcess( in StartDebugserverProcess()
1206 void GDBRemoteCommunication::DumpHistory(Stream &strm) { m_history.Dump(strm); } in DumpHistory()
1209 GDBRemoteCommunication::ConnectLocally(GDBRemoteCommunication &client, in ConnectLocally()
1210 GDBRemoteCommunication &server) { in ConnectLocally()
1242 GDBRemoteCommunication::ScopedTimeout::ScopedTimeout( in ScopedTimeout()
1243 GDBRemoteCommunication &gdb_comm, std::chrono::seconds timeout) in ScopedTimeout()
1254 GDBRemoteCommunication::ScopedTimeout::~ScopedTimeout() { in ~ScopedTimeout()
1260 void llvm::format_provider<GDBRemoteCommunication::PacketResult>::format( in format()
1261 const GDBRemoteCommunication::PacketResult &result, raw_ostream &Stream, in format()
1263 using PacketResult = GDBRemoteCommunication::PacketResult; in format()
1296 std::string GDBRemoteCommunication::ExpandRLE(std::string packet) { in ExpandRLE()