Home | History | Annotate | Download | only in bluetooth

Lines Matching defs:data

27 // Represents a data packet for Bluetooth Low Energy advertisements. This is the
32 // Constructs an AdvertiseData with the given parameters. |data| can only
33 // contain the "Service Uuids", "Service Data", "Manufacturer Data",
35 // Supplement. |data| must be properly formatted according to the supplement
36 // and contains the data as it will be sent over the wire.
39 explicit AdvertiseData(const std::vector<uint8_t>& data);
46 // Returns true if the advertising data is formatted correctly according to
50 // data() returns the current advertising data contained by this instance. The
51 // data is in the TLV format as specified in the Bluetooth Core Specification.
52 const std::vector<uint8_t>& data() const { return data_; }