Lines Matching refs:pkt
42 const std::shared_ptr<::bluetooth::Packet>& pkt) { in Serialize() argument
43 ReserveSpace(pkt, size()); in Serialize()
46 PacketBuilder::PushHeader(pkt); in Serialize()
51 PushHeader(pkt, payload_->size()); in Serialize()
54 return payload_->Serialize(pkt); in Serialize()
58 const std::shared_ptr<::bluetooth::Packet>& pkt, in PushHeader() argument
60 PushCompanyId(pkt, BLUETOOTH_COMPANY_ID); in PushHeader()
61 AddPayloadOctets1(pkt, static_cast<uint8_t>(pdu_)); in PushHeader()
62 AddPayloadOctets1(pkt, static_cast<uint8_t>(packet_type_)); in PushHeader()
63 AddPayloadOctets2(pkt, base::ByteSwap(parameter_length)); in PushHeader()
67 const std::shared_ptr<::bluetooth::Packet>& pkt, in PushAttributeValue() argument
69 AddPayloadOctets4(pkt, in PushAttributeValue()
72 AddPayloadOctets2(pkt, base::ByteSwap(character_set)); in PushAttributeValue()
74 AddPayloadOctets2(pkt, base::ByteSwap(value_length)); in PushAttributeValue()
76 AddPayloadOctets1(pkt, entry.value()[i]); in PushAttributeValue()