Lines Matching refs:GDBRemoteCommunication

61 GDBRemoteCommunication::GDBRemoteCommunication(const char *comm_name,  in GDBRemoteCommunication()  function in GDBRemoteCommunication
75 GDBRemoteCommunication::~GDBRemoteCommunication() { in ~GDBRemoteCommunication()
86 char GDBRemoteCommunication::CalculcateChecksum(llvm::StringRef payload) { in CalculcateChecksum()
95 size_t GDBRemoteCommunication::SendAck() { in SendAck()
105 size_t GDBRemoteCommunication::SendNack() { in SendNack()
115 GDBRemoteCommunication::PacketResult
116 GDBRemoteCommunication::SendPacketNoLock(llvm::StringRef payload) { in SendPacketNoLock()
127 GDBRemoteCommunication::PacketResult
128 GDBRemoteCommunication::SendNotificationPacketNoLock( in SendNotificationPacketNoLock()
150 GDBRemoteCommunication::PacketResult
151 GDBRemoteCommunication::SendRawPacketNoLock(llvm::StringRef packet, in SendRawPacketNoLock()
212 GDBRemoteCommunication::PacketResult GDBRemoteCommunication::GetAck() { in GetAck()
225 GDBRemoteCommunication::PacketResult
226 GDBRemoteCommunication::ReadPacketWithOutputSupport( in ReadPacketWithOutputSupport()
242 GDBRemoteCommunication::PacketResult
243 GDBRemoteCommunication::ReadPacket(StringExtractorGDBRemote &response, in ReadPacket()
260 GDBRemoteCommunication::PacketResult
261 GDBRemoteCommunication::WaitForPacketNoLock(StringExtractorGDBRemote &packet, in WaitForPacketNoLock()
407 bool GDBRemoteCommunication::DecompressPacket() { in DecompressPacket()
636 GDBRemoteCommunication::PacketType
637 GDBRemoteCommunication::CheckForPacket(const uint8_t *src, size_t src_len, in CheckForPacket()
669 return GDBRemoteCommunication::PacketType::Standard; in CheckForPacket()
737 return GDBRemoteCommunication::PacketType::Invalid; in CheckForPacket()
847 return GDBRemoteCommunication::PacketType::Notify; in CheckForPacket()
849 return GDBRemoteCommunication::PacketType::Standard; in CheckForPacket()
853 return GDBRemoteCommunication::PacketType::Invalid; in CheckForPacket()
856 Status GDBRemoteCommunication::StartListenThread(const char *hostname, in StartListenThread()
869 listen_url, [this] { return GDBRemoteCommunication::ListenThread(); }); in StartListenThread()
877 bool GDBRemoteCommunication::JoinListenThread() { in JoinListenThread()
883 lldb::thread_result_t GDBRemoteCommunication::ListenThread() { in ListenThread()
903 Status GDBRemoteCommunication::StartDebugserverProcess( in StartDebugserverProcess()
1226 void GDBRemoteCommunication::DumpHistory(Stream &strm) { m_history.Dump(strm); } in DumpHistory()
1228 void GDBRemoteCommunication::SetPacketRecorder( in SetPacketRecorder()
1234 GDBRemoteCommunication::ConnectLocally(GDBRemoteCommunication &client, in ConnectLocally()
1235 GDBRemoteCommunication &server) { in ConnectLocally()
1267 GDBRemoteCommunication::ScopedTimeout::ScopedTimeout( in ScopedTimeout()
1268 GDBRemoteCommunication &gdb_comm, std::chrono::seconds timeout) in ScopedTimeout()
1279 GDBRemoteCommunication::ScopedTimeout::~ScopedTimeout() { in ~ScopedTimeout()
1285 void llvm::format_provider<GDBRemoteCommunication::PacketResult>::format( in format()
1286 const GDBRemoteCommunication::PacketResult &result, raw_ostream &Stream, in format()
1288 using PacketResult = GDBRemoteCommunication::PacketResult; in format()
1321 std::string GDBRemoteCommunication::ExpandRLE(std::string packet) { in ExpandRLE()