Lines Matching refs:GDBRemoteCommunication
61 GDBRemoteCommunication::GDBRemoteCommunication(const char *comm_name, in GDBRemoteCommunication() function in GDBRemoteCommunication
80 GDBRemoteCommunication::~GDBRemoteCommunication() { in ~GDBRemoteCommunication()
94 char GDBRemoteCommunication::CalculcateChecksum(llvm::StringRef payload) { in CalculcateChecksum()
103 size_t GDBRemoteCommunication::SendAck() { in SendAck()
115 size_t GDBRemoteCommunication::SendNack() { in SendNack()
127 GDBRemoteCommunication::PacketResult
128 GDBRemoteCommunication::SendPacketNoLock(llvm::StringRef payload) { in SendPacketNoLock()
139 GDBRemoteCommunication::PacketResult
140 GDBRemoteCommunication::SendRawPacketNoLock(llvm::StringRef packet, in SendRawPacketNoLock()
203 GDBRemoteCommunication::PacketResult GDBRemoteCommunication::GetAck() { in GetAck()
216 GDBRemoteCommunication::PacketResult
217 GDBRemoteCommunication::ReadPacketWithOutputSupport( in ReadPacketWithOutputSupport()
233 GDBRemoteCommunication::PacketResult
234 GDBRemoteCommunication::ReadPacket(StringExtractorGDBRemote &response, in ReadPacket()
247 GDBRemoteCommunication::PacketResult
248 GDBRemoteCommunication::PopPacketFromQueue(StringExtractorGDBRemote &response, in PopPacketFromQueue()
273 GDBRemoteCommunication::PacketResult
274 GDBRemoteCommunication::WaitForPacketNoLock(StringExtractorGDBRemote &packet, in WaitForPacketNoLock()
421 bool GDBRemoteCommunication::DecompressPacket() { in DecompressPacket()
651 GDBRemoteCommunication::PacketType
652 GDBRemoteCommunication::CheckForPacket(const uint8_t *src, size_t src_len, in CheckForPacket()
684 return GDBRemoteCommunication::PacketType::Standard; in CheckForPacket()
753 return GDBRemoteCommunication::PacketType::Invalid; in CheckForPacket()
888 return GDBRemoteCommunication::PacketType::Notify; in CheckForPacket()
890 return GDBRemoteCommunication::PacketType::Standard; in CheckForPacket()
894 return GDBRemoteCommunication::PacketType::Invalid; in CheckForPacket()
897 Status GDBRemoteCommunication::StartListenThread(const char *hostname, in StartListenThread()
912 listen_url, GDBRemoteCommunication::ListenThread, this, &error); in StartListenThread()
917 bool GDBRemoteCommunication::JoinListenThread() { in JoinListenThread()
924 GDBRemoteCommunication::ListenThread(lldb::thread_arg_t arg) { in ListenThread()
925 GDBRemoteCommunication *comm = (GDBRemoteCommunication *)arg; in ListenThread()
939 Status GDBRemoteCommunication::StartDebugserverProcess( in StartDebugserverProcess()
1265 void GDBRemoteCommunication::DumpHistory(Stream &strm) { m_history.Dump(strm); } in DumpHistory()
1267 void GDBRemoteCommunication::SetHistoryStream(llvm::raw_ostream *strm) { in SetHistoryStream()
1272 GDBRemoteCommunication::ConnectLocally(GDBRemoteCommunication &client, in ConnectLocally()
1273 GDBRemoteCommunication &server) { in ConnectLocally()
1303 GDBRemoteCommunication::ScopedTimeout::ScopedTimeout( in ScopedTimeout()
1304 GDBRemoteCommunication &gdb_comm, std::chrono::seconds timeout) in ScopedTimeout()
1315 GDBRemoteCommunication::ScopedTimeout::~ScopedTimeout() { in ~ScopedTimeout()
1327 void GDBRemoteCommunication::AppendBytesToCache(const uint8_t *bytes, in AppendBytesToCache()
1368 void llvm::format_provider<GDBRemoteCommunication::PacketResult>::format( in format()
1369 const GDBRemoteCommunication::PacketResult &result, raw_ostream &Stream, in format()
1371 using PacketResult = GDBRemoteCommunication::PacketResult; in format()