Home
last modified time | relevance | path

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

/art/adbconnection/
Dadbconnection.cc675 alignas(sizeof(uint32_t)) uint8_t packet_header[kPacketHeaderLen]; in HandleDataWithoutAgent() local
677 packet_header, in HandleDataWithoutAgent()
678 sizeof(packet_header), in HandleDataWithoutAgent()
694 uint32_t full_len = ntohl(*reinterpret_cast<uint32_t*>(packet_header + kPacketSizeOff)); in HandleDataWithoutAgent()
695 uint32_t pkt_id = ntohl(*reinterpret_cast<uint32_t*>(packet_header + kPacketIdOff)); in HandleDataWithoutAgent()
696 uint8_t pkt_cmd_set = packet_header[kPacketCommandSetOff]; in HandleDataWithoutAgent()
697 uint8_t pkt_cmd = packet_header[kPacketCommandOff]; in HandleDataWithoutAgent()
727 DCHECK_EQ(memcmp(full_pkt.data(), packet_header, sizeof(packet_header)), 0); in HandleDataWithoutAgent()