• Home
  • Raw
  • Download

Lines Matching refs:bonded_devices

638     btif_bonded_devices_t bonded_devices;  in btif_storage_get_adapter_property()  local
640 btif_in_fetch_bonded_devices(&bonded_devices, 0); in btif_storage_get_adapter_property()
645 __func__, bonded_devices.num_devices); in btif_storage_get_adapter_property()
647 if (bonded_devices.num_devices > 0) { in btif_storage_get_adapter_property()
648 property->len = bonded_devices.num_devices * RawAddress::kLength; in btif_storage_get_adapter_property()
649 memcpy(property->val, bonded_devices.devices, property->len); in btif_storage_get_adapter_property()
915 btif_bonded_devices_t bonded_devices; in btif_storage_load_bonded_devices() local
930 btif_in_fetch_bonded_devices(&bonded_devices, 1); in btif_storage_load_bonded_devices()
969 sizeof(RawAddress) * bonded_devices.num_devices); in btif_storage_load_bonded_devices()
972 bonded_devices.num_devices * sizeof(RawAddress); in btif_storage_load_bonded_devices()
974 for (i = 0; i < bonded_devices.num_devices; i++) { in btif_storage_load_bonded_devices()
975 devices_list[i] = bonded_devices.devices[i]; in btif_storage_load_bonded_devices()
991 bonded_devices.num_devices); in btif_storage_load_bonded_devices()
994 for (i = 0; i < bonded_devices.num_devices; i++) { in btif_storage_load_bonded_devices()
1004 p_remote_addr = &bonded_devices.devices[i]; in btif_storage_load_bonded_devices()
1711 btif_bonded_devices_t bonded_devices; in btif_storage_get_num_bonded_devices() local
1712 btif_in_fetch_bonded_devices(&bonded_devices, 0); in btif_storage_get_num_bonded_devices()
1713 return bonded_devices.num_devices; in btif_storage_get_num_bonded_devices()