Lines Matching refs:GDBRemoteCommunication

62 GDBRemoteCommunication::GDBRemoteCommunication(const char *comm_name,  in GDBRemoteCommunication()  function in GDBRemoteCommunication
76 GDBRemoteCommunication::~GDBRemoteCommunication() { in ~GDBRemoteCommunication()
92 char GDBRemoteCommunication::CalculcateChecksum(llvm::StringRef payload) { in CalculcateChecksum()
101 size_t GDBRemoteCommunication::SendAck() { in SendAck()
111 size_t GDBRemoteCommunication::SendNack() { in SendNack()
121 GDBRemoteCommunication::PacketResult
122 GDBRemoteCommunication::SendPacketNoLock(llvm::StringRef payload) { in SendPacketNoLock()
133 GDBRemoteCommunication::PacketResult
134 GDBRemoteCommunication::SendRawPacketNoLock(llvm::StringRef packet, in SendRawPacketNoLock()
195 GDBRemoteCommunication::PacketResult GDBRemoteCommunication::GetAck() { in GetAck()
208 GDBRemoteCommunication::PacketResult
209 GDBRemoteCommunication::ReadPacketWithOutputSupport( in ReadPacketWithOutputSupport()
225 GDBRemoteCommunication::PacketResult
226 GDBRemoteCommunication::ReadPacket(StringExtractorGDBRemote &response, in ReadPacket()
239 GDBRemoteCommunication::PacketResult
240 GDBRemoteCommunication::PopPacketFromQueue(StringExtractorGDBRemote &response, in PopPacketFromQueue()
265 GDBRemoteCommunication::PacketResult
266 GDBRemoteCommunication::WaitForPacketNoLock(StringExtractorGDBRemote &packet, in WaitForPacketNoLock()
412 bool GDBRemoteCommunication::DecompressPacket() { in DecompressPacket()
641 GDBRemoteCommunication::PacketType
642 GDBRemoteCommunication::CheckForPacket(const uint8_t *src, size_t src_len, in CheckForPacket()
674 return GDBRemoteCommunication::PacketType::Standard; in CheckForPacket()
742 return GDBRemoteCommunication::PacketType::Invalid; in CheckForPacket()
852 return GDBRemoteCommunication::PacketType::Notify; in CheckForPacket()
854 return GDBRemoteCommunication::PacketType::Standard; in CheckForPacket()
858 return GDBRemoteCommunication::PacketType::Invalid; in CheckForPacket()
861 Status GDBRemoteCommunication::StartListenThread(const char *hostname, in StartListenThread()
874 listen_url, GDBRemoteCommunication::ListenThread, this); in StartListenThread()
882 bool GDBRemoteCommunication::JoinListenThread() { in JoinListenThread()
889 GDBRemoteCommunication::ListenThread(lldb::thread_arg_t arg) { in ListenThread()
890 GDBRemoteCommunication *comm = (GDBRemoteCommunication *)arg; in ListenThread()
904 Status GDBRemoteCommunication::StartDebugserverProcess( in StartDebugserverProcess()
1223 void GDBRemoteCommunication::DumpHistory(Stream &strm) { m_history.Dump(strm); } in DumpHistory()
1225 void GDBRemoteCommunication::SetPacketRecorder( in SetPacketRecorder()
1231 GDBRemoteCommunication::ConnectLocally(GDBRemoteCommunication &client, in ConnectLocally()
1232 GDBRemoteCommunication &server) { in ConnectLocally()
1264 GDBRemoteCommunication::ScopedTimeout::ScopedTimeout( in ScopedTimeout()
1265 GDBRemoteCommunication &gdb_comm, std::chrono::seconds timeout) in ScopedTimeout()
1276 GDBRemoteCommunication::ScopedTimeout::~ScopedTimeout() { in ~ScopedTimeout()
1288 void GDBRemoteCommunication::AppendBytesToCache(const uint8_t *bytes, in AppendBytesToCache()
1329 void llvm::format_provider<GDBRemoteCommunication::PacketResult>::format( in format()
1330 const GDBRemoteCommunication::PacketResult &result, raw_ostream &Stream, in format()
1332 using PacketResult = GDBRemoteCommunication::PacketResult; in format()
1365 std::string GDBRemoteCommunication::ExpandRLE(std::string packet) { in ExpandRLE()