Searched refs:GDBRemotePacket (Results 1 – 5 of 5) sorted by relevance
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationHistory.cpp | 30 GDBRemotePacket::Type type, in AddPacket() 46 GDBRemotePacket::Type type, in AddPacket() 66 const GDBRemotePacket &entry = m_packets[idx]; in Dump() 67 if (entry.type == GDBRemotePacket::ePacketTypeInvalid || in Dump() 85 const GDBRemotePacket &entry = m_packets[idx]; in Dump() 86 if (entry.type == GDBRemotePacket::ePacketTypeInvalid || in Dump() 91 (entry.type == GDBRemotePacket::ePacketTypeSend) ? "send" in Dump()
|
H A D | GDBRemoteCommunicationHistory.h | 31 void AddPacket(char packet_char, GDBRemotePacket::Type type, 35 GDBRemotePacket::Type type, uint32_t bytes_transmitted); 67 std::vector<GDBRemotePacket> m_packets;
|
H A D | GDBRemoteCommunication.cpp | 99 m_history.AddPacket(ch, GDBRemotePacket::ePacketTypeSend, bytes_written); in SendAck() 109 m_history.AddPacket(ch, GDBRemotePacket::ePacketTypeSend, bytes_written); in SendNack() 195 GDBRemotePacket::ePacketTypeSend, bytes_written); in SendRawPacketNoLock() 786 GDBRemotePacket::ePacketTypeRecv, total_length); in CheckForPacket()
|
/openbsd-src/gnu/llvm/lldb/source/Utility/ |
H A D | GDBRemote.cpp | 48 llvm::StringRef GDBRemotePacket::GetTypeStr() const { in GetTypeStr() 50 case GDBRemotePacket::ePacketTypeSend: in GetTypeStr() 52 case GDBRemotePacket::ePacketTypeRecv: in GetTypeStr() 54 case GDBRemotePacket::ePacketTypeInvalid: in GetTypeStr() 60 void GDBRemotePacket::Dump(Stream &strm) const { in Dump()
|
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/ |
H A D | GDBRemote.h | 50 struct GDBRemotePacket { struct 54 GDBRemotePacket() = default; argument
|