Searched refs:first_packet_byte (Results 1 – 2 of 2) sorted by relevance
204 bool ExtractIsReply(uint8_t first_packet_byte) const { in ExtractIsReply() argument206 return (first_packet_byte & ePacketTypeMask) != 0; in ExtractIsReply()209 CommandType ExtractCommand(uint8_t first_packet_byte) const { in ExtractCommand() argument211 return (CommandType)(first_packet_byte & eCommandTypeMask); in ExtractCommand()
728 const uint8_t first_packet_byte = packet.GetU8(&offset); in DumpPacket() local732 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()