Searched refs:octets (Results 1 – 5 of 5) sorted by relevance
/system/bt/gd/packet/ |
D | raw_builder.cc | 33 bool RawBuilder::AddOctets(size_t octets, const vector<uint8_t>& bytes) { in AddOctets() argument 34 if (payload_.size() + octets > max_bytes_) return false; in AddOctets() 36 if (octets != bytes.size()) return false; in AddOctets() 47 bool RawBuilder::AddOctets(size_t octets, uint64_t value) { in AddOctets() argument 52 if (octets > sizeof(uint64_t)) return false; in AddOctets() 54 for (size_t i = 0; i < octets; i++) { in AddOctets() 61 return AddOctets(octets, val_vector); in AddOctets()
|
D | raw_builder.h | 50 bool AddOctets(size_t octets, const std::vector<uint8_t>& bytes); 65 bool AddOctets(size_t octets, uint64_t value);
|
/system/bt/packet/base/ |
D | packet_builder.cc | 31 size_t octets, uint64_t value) { in AddPayloadOctets() argument 32 CHECK_LE(octets, sizeof(uint64_t)); in AddPayloadOctets() 34 for (size_t i = 0; i < octets; i++) { in AddPayloadOctets()
|
D | packet_builder.h | 58 bool AddPayloadOctets(const std::shared_ptr<Packet>& pkt, size_t octets,
|
/system/bt/gd/hci/ |
D | hci_packets.pdl | 1932 …_padding_[244], // Zero padding to be 240 octets (GapData[]) + 2 (opcode) + 1 (size) + 1 (FecRequi… 2764 tx_octets : 16, // payload octets per single PDU 0x1B to 0x00FB 2779 tx_octets : 16, // payload octets per single PDU 0x1B to 0x00FB 2784 tx_octets : 16, // payload octets per single PDU 0x1B to 0x00FB
|