Home
last modified time | relevance | path

Searched refs:identity_addr (Results 1 – 22 of 22) sorted by relevance

/packages/modules/Bluetooth/system/main/shim/
Ddistance_measurement_manager.cc72 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/
Dbta_dm_act.cc494 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 …]
Dbta_dm_sec_int.h84 void bta_dm_consolidate(const RawAddress& identity_addr, const RawAddress& rpa);
Dbta_dm_sec.cc87 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()
Dbta_dm_int.h86 RawAddress identity_addr; member
/packages/modules/Bluetooth/system/test/mock/
Dmock_stack_l2cap_ble.h76 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()
Dmock_stack_l2cap_ble.cc88 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()
Dmock_stack_l2cap_interface.h106 MOCK_METHOD(void, L2CA_Consolidate, (const RawAddress& identity_addr, const RawAddress& rpa));
/packages/modules/Bluetooth/system/stack/include/
Dbtm_ble_sec_api_types.h65 RawAddress identity_addr; member
Dacl_api.h302 void btm_acl_consolidate(const RawAddress& identity_addr, const RawAddress& rpa);
Dl2cap_interface.h639 virtual void L2CA_Consolidate(const RawAddress& identity_addr, const RawAddress& rpa) = 0;
Dgatt_api.h1272 void gatt_consolidate(const RawAddress& identity_addr, const RawAddress& rpa);
/packages/modules/Bluetooth/system/stack/l2cap/
Dl2cap_api.cc207 void bluetooth::stack::l2cap::Impl::L2CA_Consolidate(const RawAddress& identity_addr, in L2CA_Consolidate() argument
209 ::L2CA_Consolidate(identity_addr, rpa); in L2CA_Consolidate()
Dl2c_api.h112 void L2CA_Consolidate(const RawAddress& identity_addr, const RawAddress& rpa) override;
Dl2c_ble.cc74 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/
Dbtm_api.h559 typedef void(BTM_CONSOLIDATION_CB)(const RawAddress& identity_addr, const RawAddress& rpa);
/packages/modules/Bluetooth/system/stack/acl/
Dbtm_acl.cc112 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/
Dbtif_storage.cc892 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/
Dgatt_main.cc968 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/
Dl2c_api.h706 void L2CA_Consolidate(const RawAddress& identity_addr, const RawAddress& rpa);
/packages/modules/Bluetooth/system/stack/btm/
Dbtm_ble_sec.cc926 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/
Dsmp_act.cc1072 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()