Searched refs:octets (Results 1 – 7 of 7) 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 | acl_manager.h | 82 virtual void SetLeSuggestedDefaultDataParameters(uint16_t octets, uint16_t time);
|
D | acl_manager.cc | 166 void AclManager::SetLeSuggestedDefaultDataParameters(uint16_t octets, uint16_t time) { in SetLeSuggestedDefaultDataParameters() argument 167 CallOn(pimpl_->le_impl_, &le_impl::set_le_suggested_default_data_parameters, octets, time); in SetLeSuggestedDefaultDataParameters()
|
D | hci_packets.pdl | 1354 // [0x00000000, 0xFFFFFFFE] Bandwidth in octets per second. 1362 // octets. 1366 // Host to Controller nominal data rate in octets per second. 1406 // [0x00000000, 0xFFFFFFFE] Bandwidth in octets per second. 1414 // octets. 1418 // Host to Controller nominal data rate in octets per second. 2314 _padding_[240], // Zero padding GapData[] to be 240 octets 3270 tx_octets : 16, // payload octets per single PDU 0x1B to 0x00FB 3285 tx_octets : 16, // payload octets per single PDU 0x1B to 0x00FB 3290 tx_octets : 16, // payload octets per single PDU 0x1B to 0x00FB
|