Home
last modified time | relevance | path

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

/art/adbconnection/
Dadbconnection.cc658 alignas(sizeof(uint32_t)) uint8_t packet_header[kPacketHeaderLen]; in HandleDataWithoutAgent() local
660 packet_header, in HandleDataWithoutAgent()
661 sizeof(packet_header), in HandleDataWithoutAgent()
677 uint32_t full_len = ntohl(*reinterpret_cast<uint32_t*>(packet_header + kPacketSizeOff)); in HandleDataWithoutAgent()
678 uint32_t pkt_id = ntohl(*reinterpret_cast<uint32_t*>(packet_header + kPacketIdOff)); in HandleDataWithoutAgent()
679 uint8_t pkt_cmd_set = packet_header[kPacketCommandSetOff]; in HandleDataWithoutAgent()
680 uint8_t pkt_cmd = packet_header[kPacketCommandOff]; in HandleDataWithoutAgent()
710 DCHECK_EQ(memcmp(full_pkt.data(), packet_header, sizeof(packet_header)), 0); in HandleDataWithoutAgent()