Home
last modified time | relevance | path

Searched defs:AdvertisingData (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/pigweed/pw_bluetooth/public/pw_bluetooth/low_energy/
H A Dadvertising_data.h38 struct AdvertisingData { struct
40 std::string_view name;
43 Appearance appearance = Appearance::kUnknown;
45 span<const Uuid> service_uuids;
47 span<const ServiceData> service_data;
49 span<const ManufacturerData> manufacturer_data;
59 span<const std::string_view> uris;
63 bool include_tx_power_level = false;
/aosp_15_r20/external/python/bumble/rust/src/wrapper/
Dcore.rs34 pub struct AdvertisingData(pub(crate) PyObject); struct
36 impl AdvertisingData { implementation
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/host/hci/
H A Dlow_energy_advertiser.cc110 const AdvertisingData&, in GetExtendedAdvertisingEventProperties()
146 const AdvertisingData&, in GetLegacyAdvertisingEventProperties()
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/host/gap/
H A Dlow_energy_advertising_manager_test.cc156 const DeviceAddress&, const AdvertisingData&, AdvFlags, bool) override { in BuildSetAdvertisingData()
173 const AdvertisingData&, in BuildSetScanResponse()
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/public/pw_bluetooth_sapphire/internal/host/hci/
H A Dlow_energy_advertiser.h25 class AdvertisingData; variable
/aosp_15_r20/external/python/bumble/bumble/
Dpairing.py58 def from_ad(cls, ad: AdvertisingData) -> OobData:
Dcore.py1294 class AdvertisingData: class
/aosp_15_r20/external/python/bumble/bumble/pandora/
Dhost.py886 def pack_data_types(self, ad: AdvertisingData) -> DataTypes:
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/host/common/
H A Dadvertising_data.cc164 AdvertisingData::AdvertisingData(AdvertisingData&& other) noexcept { in AdvertisingData() function in bt::AdvertisingData
/aosp_15_r20/external/python/bumble/rust/src/wrapper/device/
Dmod.rs625 pub fn data(&self) -> PyResult<AdvertisingData> { in data()