/packages/modules/Bluetooth/system/main/shim/ |
D | distance_measurement_manager.cc | 72 void StartDistanceMeasurement(RawAddress identity_addr, uint16_t interval, uint8_t method) { in StartDistanceMeasurement() argument 74 base::Unretained(this), identity_addr, interval, method)); in StartDistanceMeasurement() 77 void DoStartDistanceMeasurement(RawAddress identity_addr, uint16_t interval, uint8_t method) { in DoStartDistanceMeasurement() argument 80 uint16_t connection_handle = GetConnectionHandleAndRole(identity_addr, &local_hci_role); in DoStartDistanceMeasurement() 82 bluetooth::ToGdAddress(identity_addr), connection_handle, local_hci_role, interval, in DoStartDistanceMeasurement() 85 bluetooth::ras::GetRasClient()->Connect(identity_addr); in DoStartDistanceMeasurement() 89 void StopDistanceMeasurement(RawAddress identity_addr, uint8_t method) { in StopDistanceMeasurement() argument 91 base::Unretained(this), identity_addr, method)); in StopDistanceMeasurement() 94 void DoStopDistanceMeasurement(RawAddress identity_addr, uint8_t method) { in DoStopDistanceMeasurement() argument 96 bluetooth::ToGdAddress(identity_addr), GetConnectionHandleAndRole(identity_addr), in DoStopDistanceMeasurement()
|
/packages/modules/Bluetooth/system/bta/dm/ |
D | bta_dm_act.cc | 494 RawAddress identity_addr = target; in bta_dm_remove_device() local 502 &identity_addr, BT_TRANSPORT_BR_EDR); in bta_dm_remove_device() 504 if (!bredr_connected && identity_addr != pseudo_addr) { in bta_dm_remove_device() 505 identity_addr = pseudo_addr; in bta_dm_remove_device() 507 &identity_addr, BT_TRANSPORT_BR_EDR); in bta_dm_remove_device() 509 if (identity_addr.IsEmpty()) { in bta_dm_remove_device() 510 identity_addr = target; in bta_dm_remove_device() 515 if (identity_addr != pseudo_addr && !GATT_CancelConnect(0, identity_addr, false)) { in bta_dm_remove_device() 523 if (status != tBTM_STATUS::BTM_SUCCESS && identity_addr != pseudo_addr) { in bta_dm_remove_device() 524 status = btm_remove_acl(identity_addr, BT_TRANSPORT_LE); in bta_dm_remove_device() [all …]
|
D | bta_dm_sec_int.h | 84 void bta_dm_consolidate(const RawAddress& identity_addr, const RawAddress& rpa);
|
D | bta_dm_sec.cc | 87 void bta_dm_consolidate(const RawAddress& identity_addr, const RawAddress& rpa) { in bta_dm_consolidate() argument 93 log::info("consolidating bda_dm_cb record {} -> {}", rpa, identity_addr); in bta_dm_consolidate() 94 bta_dm_cb.device_list.peer_device[i].peer_bdaddr = identity_addr; in bta_dm_consolidate()
|
D | bta_dm_int.h | 86 RawAddress identity_addr; member
|
/packages/modules/Bluetooth/system/test/mock/ |
D | mock_stack_l2cap_ble.h | 76 std::function<void(const RawAddress& identity_addr, const RawAddress& rpa)> body{ 78 void operator()(const RawAddress& identity_addr, const RawAddress& rpa) { in operator() 79 body(identity_addr, rpa); in operator()
|
D | mock_stack_l2cap_ble.cc | 88 void L2CA_Consolidate(const RawAddress& identity_addr, const RawAddress& rpa) { in L2CA_Consolidate() argument 90 test::mock::stack_l2cap_ble::L2CA_ConsolidateParams(identity_addr, rpa); in L2CA_Consolidate()
|
D | mock_stack_l2cap_interface.h | 106 MOCK_METHOD(void, L2CA_Consolidate, (const RawAddress& identity_addr, const RawAddress& rpa));
|
/packages/modules/Bluetooth/system/stack/include/ |
D | btm_ble_sec_api_types.h | 65 RawAddress identity_addr; member
|
D | acl_api.h | 302 void btm_acl_consolidate(const RawAddress& identity_addr, const RawAddress& rpa);
|
D | l2cap_interface.h | 639 virtual void L2CA_Consolidate(const RawAddress& identity_addr, const RawAddress& rpa) = 0;
|
D | gatt_api.h | 1272 void gatt_consolidate(const RawAddress& identity_addr, const RawAddress& rpa);
|
/packages/modules/Bluetooth/system/stack/l2cap/ |
D | l2cap_api.cc | 207 void bluetooth::stack::l2cap::Impl::L2CA_Consolidate(const RawAddress& identity_addr, in L2CA_Consolidate() argument 209 ::L2CA_Consolidate(identity_addr, rpa); in L2CA_Consolidate()
|
D | l2c_api.h | 112 void L2CA_Consolidate(const RawAddress& identity_addr, const RawAddress& rpa) override;
|
D | l2c_ble.cc | 74 void L2CA_Consolidate(const RawAddress& identity_addr, const RawAddress& rpa) { in L2CA_Consolidate() argument 80 log::info("consolidating l2c_lcb record {} -> {}", rpa, identity_addr); in L2CA_Consolidate() 81 p_lcb->remote_bd_addr = identity_addr; in L2CA_Consolidate()
|
/packages/modules/Bluetooth/system/stack/btm/internal/ |
D | btm_api.h | 559 typedef void(BTM_CONSOLIDATION_CB)(const RawAddress& identity_addr, const RawAddress& rpa);
|
/packages/modules/Bluetooth/system/stack/acl/ |
D | btm_acl.cc | 112 void btm_acl_consolidate(const RawAddress& identity_addr, const RawAddress& rpa); 278 void StackAclBtmAcl::btm_acl_consolidate(const RawAddress& identity_addr, const RawAddress& rpa) { in btm_acl_consolidate() argument 286 log::info("consolidate {} -> {}", rpa, identity_addr); in btm_acl_consolidate() 287 p_acl->remote_addr = identity_addr; in btm_acl_consolidate() 293 void btm_acl_consolidate(const RawAddress& identity_addr, const RawAddress& rpa) { in btm_acl_consolidate() argument 294 return internal_.btm_acl_consolidate(identity_addr, rpa); in btm_acl_consolidate()
|
/packages/modules/Bluetooth/system/btif/src/ |
D | btif_storage.cc | 892 if (bonded_devices.devices[i] != key.pid_key.identity_addr) { in btif_storage_load_le_devices() 894 key.pid_key.identity_addr); in btif_storage_load_le_devices() 896 if (bonded_devices.devices[i].IsEmpty() || key.pid_key.identity_addr.IsEmpty()) { in btif_storage_load_le_devices() 899 consolidated_devices.emplace_back(bonded_devices.devices[i], key.pid_key.identity_addr, in btif_storage_load_le_devices()
|
/packages/modules/Bluetooth/system/stack/gatt/ |
D | gatt_main.cc | 968 void gatt_consolidate(const RawAddress& identity_addr, const RawAddress& rpa) { in gatt_consolidate() argument 974 log::info("consolidate {} -> {}", rpa, identity_addr); in gatt_consolidate() 975 p_tcb->peer_bda = identity_addr; in gatt_consolidate()
|
/packages/modules/Bluetooth/system/stack/l2cap/internal/ |
D | l2c_api.h | 706 void L2CA_Consolidate(const RawAddress& identity_addr, const RawAddress& rpa);
|
/packages/modules/Bluetooth/system/stack/btm/ |
D | btm_ble_sec.cc | 926 p_rec->ble.identity_address_with_type.bda = p_keys->pid_key.identity_addr; in btm_sec_save_le_key() 932 p_rec->sec_rec.ble_keys.key_type, p_rec->bd_addr, p_keys->pid_key.identity_addr, in btm_sec_save_le_key() 935 p_rec->bd_addr = p_keys->pid_key.identity_addr; in btm_sec_save_le_key()
|
/packages/modules/Bluetooth/system/stack/smp/ |
D | smp_act.cc | 1072 STREAM_TO_BDADDR(pid_key.pid_key.identity_addr, p); in smp_proc_id_addr() 1078 p_cb->id_addr = pid_key.pid_key.identity_addr; in smp_proc_id_addr()
|