Searched refs:first_packet_byte (Results 1 – 2 of 2) sorted by relevance
206 bool ExtractIsReply(uint8_t first_packet_byte) const { in ExtractIsReply() argument208 return (first_packet_byte & ePacketTypeMask) != 0; in ExtractIsReply()211 CommandType ExtractCommand(uint8_t first_packet_byte) const { in ExtractCommand() argument213 return (CommandType)(first_packet_byte & eCommandTypeMask); in ExtractCommand()
729 const uint8_t first_packet_byte = packet.GetU8(&offset); in DumpPacket() local733 const CommandType command = ExtractCommand(first_packet_byte); in DumpPacket()736 const bool is_reply = ExtractIsReply(first_packet_byte); in DumpPacket()739 first_packet_byte, sequence_id, length, key); in DumpPacket()