Home
last modified time | relevance | path

Searched refs:VendorProductInfo (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Bluetooth/system/gd/discovery/device/
Dbt_property.cc349 std::shared_ptr<VendorProductInfo> VendorProductInfo::Create(const bt_vendor_product_info_t& info) { in Create()
350 return std::make_shared<VendorProductInfo>(VendorProductInfo(info)); in Create()
Dbt_property.h247 class VendorProductInfo : public BtPropertySimple<bt_vendor_product_info_t> {
249 VendorProductInfo(const bt_vendor_product_info_t& info) in VendorProductInfo() function
252 static std::shared_ptr<VendorProductInfo> Create(const bt_vendor_product_info_t& info);
Dbt_property_unittest.cc246 properties.push_back(VendorProductInfo::Create(kVendorProductInfo)); in fill_property()
/packages/modules/Bluetooth/system/gd/rust/topshim/src/
Dbtif.rs166 VendorProductInfo, enumerator
588 VendorProductInfo(BtVendorProductInfo), enumerator
631 BluetoothProperty::VendorProductInfo(_) => BtPropertyType::VendorProductInfo, in get_type()
663 BluetoothProperty::VendorProductInfo(_) => mem::size_of::<BtVendorProductInfo>(), in get_len()
763 BluetoothProperty::VendorProductInfo(vpi) => { in get_data_ptr()
850 BtPropertyType::VendorProductInfo => { in from()
852 BluetoothProperty::VendorProductInfo(BtVendorProductInfo::from(v)) in from()
/packages/modules/Bluetooth/floss/pandora/floss/
Dfloss_enums.py195 VendorProductInfo = 0x13 variable in BtPropertyType
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth.rs1174 BluetoothProperty::VendorProductInfo(p) => vpi = p.clone(), in send_metrics_remote_device_info()
2612 match self.get_remote_device_property(&device, &BtPropertyType::VendorProductInfo) { in get_remote_vendor_product_info()
2613 Some(BluetoothProperty::VendorProductInfo(p)) => p.clone(), in get_remote_vendor_product_info()