Home
last modified time | relevance | path

Searched refs:first_packet_byte (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.h204 bool ExtractIsReply(uint8_t first_packet_byte) const { in ExtractIsReply() argument
206 return (first_packet_byte & ePacketTypeMask) != 0; in ExtractIsReply()
209 CommandType ExtractCommand(uint8_t first_packet_byte) const { in ExtractCommand() argument
211 return (CommandType)(first_packet_byte & eCommandTypeMask); in ExtractCommand()
H A DCommunicationKDP.cpp728 const uint8_t first_packet_byte = packet.GetU8(&offset); in DumpPacket() local
732 const CommandType command = ExtractCommand(first_packet_byte); in DumpPacket()
735 const bool is_reply = ExtractIsReply(first_packet_byte); in DumpPacket()
738 first_packet_byte, sequence_id, length, key); in DumpPacket()