Home
last modified time | relevance | path

Searched refs:remote_uuids (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/system/bta/hh/
Dbta_hh_headtracker.cc151 bluetooth::Uuid remote_uuids[BT_MAX_NUM_UUIDS] = {}; in bta_hh_headtracker_supported() local
152 bt_property_t remote_properties = {BT_PROPERTY_UUIDS, sizeof(remote_uuids), in bta_hh_headtracker_supported()
153 &remote_uuids}; in bta_hh_headtracker_supported()
160 int count = remote_properties.len / sizeof(remote_uuids[0]); in bta_hh_headtracker_supported()
162 if (remote_uuids[i] == ANDROID_HEADTRACKER_SERVICE_UUID) { in bta_hh_headtracker_supported()
/packages/modules/Bluetooth/system/btif/src/
Dbtif_core.cc375 Uuid remote_uuids[BT_MAX_NUM_UUIDS]; in btif_in_get_remote_device_properties() local
405 sizeof(remote_uuids), remote_uuids); in btif_in_get_remote_device_properties()
Dbtif_hh.cc1537 bluetooth::Uuid remote_uuids[BT_MAX_NUM_UUIDS] = {}; in btif_hh_transport_select() local
1538 bt_property_t remote_properties = {BT_PROPERTY_UUIDS, sizeof(remote_uuids), in btif_hh_transport_select()
1539 &remote_uuids}; in btif_hh_transport_select()
1554 int count = remote_properties.len / sizeof(remote_uuids[0]); in btif_hh_transport_select()
1556 if (remote_uuids[i].Is16Bit()) { in btif_hh_transport_select()
1557 if (remote_uuids[i].As16Bit() == UUID_SERVCLASS_HUMAN_INTERFACE) { in btif_hh_transport_select()
1559 } else if (remote_uuids[i].As16Bit() == UUID_SERVCLASS_LE_HID) { in btif_hh_transport_select()
1564 remote_uuids[i] == ANDROID_HEADTRACKER_SERVICE_UUID) { in btif_hh_transport_select()
Dbtif_storage.cc982 Uuid remote_uuids[BT_MAX_NUM_UUIDS]; in btif_storage_load_bonded_devices() local
1082 remote_uuids, sizeof(remote_uuids), in btif_storage_load_bonded_devices()
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_admin.rs92 fn get_blocked_services(&self, remote_uuids: &Vec<Uuid>) -> Vec<Uuid> { in get_blocked_services()
93 remote_uuids.iter().filter(|&&uu| !self.is_service_allowed(uu)).cloned().collect() in get_blocked_services()