Lines Matching refs:bonded_devices

593         btif_bonded_devices_t bonded_devices;  in btif_storage_get_adapter_property()  local
595 btif_in_fetch_bonded_devices(&bonded_devices, 0); in btif_storage_get_adapter_property()
597 …evices: %d Property:BT_PROPERTY_ADAPTER_BONDED_DEVICES", __FUNCTION__, bonded_devices.num_devices); in btif_storage_get_adapter_property()
599 if (bonded_devices.num_devices > 0) in btif_storage_get_adapter_property()
601 property->len = bonded_devices.num_devices * sizeof(bt_bdaddr_t); in btif_storage_get_adapter_property()
602 memcpy(property->val, bonded_devices.devices, property->len); in btif_storage_get_adapter_property()
846 btif_bonded_devices_t bonded_devices; in btif_storage_load_bonded_devices() local
858 btif_in_fetch_bonded_devices(&bonded_devices, 1); in btif_storage_load_bonded_devices()
893 (bt_bdaddr_t *)osi_malloc(sizeof(bt_bdaddr_t) * bonded_devices.num_devices); in btif_storage_load_bonded_devices()
895 adapter_props[num_props].len = bonded_devices.num_devices * sizeof(bt_bdaddr_t); in btif_storage_load_bonded_devices()
897 for (i=0; i < bonded_devices.num_devices; i++) in btif_storage_load_bonded_devices()
899 memcpy(devices_list + i, &bonded_devices.devices[i], sizeof(bt_bdaddr_t)); in btif_storage_load_bonded_devices()
914 BTIF_TRACE_EVENT("%s: %d bonded devices found", __FUNCTION__, bonded_devices.num_devices); in btif_storage_load_bonded_devices()
917 for (i = 0; i < bonded_devices.num_devices; i++) in btif_storage_load_bonded_devices()
928 p_remote_addr = &bonded_devices.devices[i]; in btif_storage_load_bonded_devices()