Home
last modified time | relevance | path

Searched refs:address_ (Results 1 – 25 of 73) sorted by relevance

123

/packages/modules/Bluetooth/system/gd/hci/
Daddress_with_type.h38 : address_(std::move(address)), address_type_(address_type) {} in AddressWithType()
40 …explicit AddressWithType() : address_(Address::kEmpty), address_type_(AddressType::PUBLIC_DEVICE_A… in AddressWithType()
43 return address_; in GetAddress()
52 …return address_type_ == hci::AddressType::RANDOM_DEVICE_ADDRESS && ((address_.data())[5] & 0xc0) =… in IsRpa()
61 prand[0] = address_.address[3]; in IsRpaThatMatchesIrk()
62 prand[1] = address_.address[4]; in IsRpaThatMatchesIrk()
63 prand[2] = address_.address[5]; in IsRpaThatMatchesIrk()
67 hash[0] = address_.address[0]; in IsRpaThatMatchesIrk()
68 hash[1] = address_.address[1]; in IsRpaThatMatchesIrk()
69 hash[2] = address_.address[2]; in IsRpaThatMatchesIrk()
[all …]
/packages/modules/Bluetooth/tools/rootcanal/include/hci/
Daddress_with_type.h39 : address_(std::move(address)), address_type_(address_type) {} in AddressWithType()
42 : address_(Address::kEmpty), in AddressWithType()
45 inline Address GetAddress() const { return address_; } in GetAddress()
52 ((address_.data())[5] & 0xc0) == 0x40; in IsRpa()
64 prand[0] = address_.address[3]; in IsRpaThatMatchesIrk()
65 prand[1] = address_.address[4]; in IsRpaThatMatchesIrk()
66 prand[2] = address_.address[5]; in IsRpaThatMatchesIrk()
71 hash[0] = address_.address[0]; in IsRpaThatMatchesIrk()
72 hash[1] = address_.address[1]; in IsRpaThatMatchesIrk()
73 hash[2] = address_.address[2]; in IsRpaThatMatchesIrk()
[all …]
/packages/modules/Bluetooth/system/bta/le_audio/
Ddevices.cc233 log::info("Configuration is NOT supported by device {}", address_); in IsAudioSetConfigurationSupported()
239 log::info("Configuration is supported by device {}", address_); in IsAudioSetConfigurationSupported()
253 log::info("{}, using an already active ASE id={}", address_, ase->id); in ConfigureAses()
259 log::error("{}, unable to find an ASE to configure", address_); in ConfigureAses()
318 log::error("{}, no matching PAC found. Stop the activation.", address_); in ConfigureAses()
336 address_); in ConfigureAses()
391 address_, ase->id, direction == 1 ? "snk" : "src", in ConfigureAses()
407 log::debug("{}, {} --> {}", address_, in SetConnectionState()
411 kLogConnectionTag, group_id_, address_, in SetConnectionState()
469 log::info("{}, headtracker codec does not have metadata", address_); in ParseHeadtrackingCodec()
[all …]
Dstate_machine.cc153 leAudioDevice->address_); in AttachToStream()
174 leAudioDevice->address_); in AttachToStream()
420 leAudioDevice->address_, ase->id, ToString(ase->state), in ProcessGattNotifEvent()
424 kLogAseStateNotif, leAudioDevice->group_id_, leAudioDevice->address_, in ProcessGattNotifEvent()
607 kLogHciEvent, group->group_id_, leAudioDevice->address_, in ProcessHciNotifSetupIsoDataPath()
674 kLogHciEvent, group->group_id_, leAudioDevice->address_, in ProcessHciNotifRemoveIsoDataPath()
721 kLogStateMachineTag, group->group_id_, leAudioDevice->address_, in ProcessHciNotifRemoveIsoDataPath()
784 leAudioDevice->address_, leAudioDevice->group_id_); in ProcessHciNotifAclDisconnected()
831 leAudioDevice->address_, group->IsAnyDeviceConnected(), in ProcessHciNotifAclDisconnected()
889 leAudioDevice->address_); in applyDsaDataPath()
[all …]
Dstorage_helper.cc149 leAudioDevice->address_, in SerializeSinkPacs()
162 leAudioDevice->address_, in SerializeSourcePacs()
184 leAudioDevice->address_); in deserializePacs()
194 leAudioDevice->address_); in deserializePacs()
265 log::debug("device: {}, number of ases {}", leAudioDevice->address_, in SerializeAses()
269 log::warn("No ases available for device {}", leAudioDevice->address_); in SerializeAses()
313 leAudioDevice->address_); in DeserializeAses()
334 leAudioDevice->address_); in DeserializeAses()
339 leAudioDevice->address_); in DeserializeAses()
383 leAudioDevice->address_); in SerializeHandles()
[all …]
Dclient.cc415 log::info("device {}", leAudioDevice->address_); in SetDeviceAsRemovePendingAndStopGroup()
452 leAudioDevice->address_); in OnGroupMemberRemovedCb()
458 log::info("device not in the group: {}, {}", leAudioDevice->address_, in OnGroupMemberRemovedCb()
546 leAudioDevice->address_); in OnDeviceAutonomousStateTransitionTimeout()
999 RemoveDevice(dev->address_); in GroupDestroy()
1455 log::error("Device {} is in invalid state: {}", leAudioDevice->address_, in Connect()
1488 all_group_device_addrs.push_back(leAudioDevice->address_); in GetGroupDevices()
1535 leAudioDevice->address_, in AddFromStorage()
1610 leAudioDevice->address_); in BackgroundConnectIfNeeded()
1673 btif_storage_set_leaudio_autoconnect(dev->address_, false); in Disconnect()
[all …]
Ddevice_groups.cc221 log::info("Device {} is {}", leAudioDevice.lock().get()->address_, in Activate()
491 BTM_GetPeerSCA(leAudioDevice.lock()->address_, BT_TRANSPORT_LE); in GetSCA()
814 log::warn("Device {} has no ASEs for direction: {}", device->address_, in GetAudioSetConfigurationRequirements()
824 device->address_, (int)direction); in GetAudioSetConfigurationRequirements()
850 device->address_, (int)locations, (int)direction); in GetAudioSetConfigurationRequirements()
1057 group_id_, device->address_, channel_count_bitmap); in GetGroupSinkStrategy()
1155 log::info("device: {}", leAudioDevice->address_); in AssignCisIds()
1160 leAudioDevice->address_); in AssignCisIds()
1202 cises[cis_id].addr = leAudioDevice->address_; in AssignCisIds()
1236 cises[cis_id].addr = leAudioDevice->address_; in AssignCisIds()
[all …]
Ddevices.h78 RawAddress address_;
115 LeAudioDevice(const RawAddress& address_, DeviceConnectState state,
117 : address_(address_), in address_() argument
/packages/modules/Bluetooth/system/profile/avrcp/
Ddevice.cc59 address_(bdaddr), in Device()
83 log::info("{}: browse_mtu = {}", address_, browse_mtu); in SetBrowseMtu()
88 log::info("{}: connected = {}", address_, connected); in SetBipClientStatus()
104 return address_ == a2dp_interface_->active_peer(); in IsActive()
108 return a2dp_interface_->is_peer_in_silence_mode(address_); in IsInSilenceMode()
118 log::warn("{}: Request packet is not valid", address_); in VendorPacketHandler()
141 log::warn("{}: Request packet is not valid", address_); in VendorPacketHandler()
153 address_, register_notification->GetEvent()); in VendorPacketHandler()
165 log::warn("{}: Unhandled Response: pdu={}", address_, in VendorPacketHandler()
188 log::warn("{}: Request packet is not valid", address_); in VendorPacketHandler()
[all …]
/packages/modules/Bluetooth/system/gd/security/test/
Dfake_security_interface.h27 : listener_(listener), address_(address) {} in FakeLinkSecurityInterface()
30 return address_; in GetRemoteAddress()
39 listener_->OnLinkDisconnected(address_); in Release()
42 listener_->OnLinkDisconnected(address_); in Disconnect()
50 hci::Address address_; variable
/packages/modules/Bluetooth/system/btif/src/
Dbtif_profile_queue.cc54 : address_(address), uuid_(uuid), busy_(false), connect_cb_(connect_cb) {} in ConnectNode()
58 ADDRESS_TO_LOGGABLE_CSTR(address_), uuid_, in ToString()
62 const RawAddress& address() const { return address_; } in address()
75 return connect_cb_(&address_, uuid_); in connect()
79 RawAddress address_; member in ConnectNode
/packages/modules/Bluetooth/tools/rootcanal/model/devices/
Dbeacon.cc50 Address::FromString(args[1], address_); in Beacon()
64 address_, Address::kEmpty, AddressType::PUBLIC, AddressType::PUBLIC, in Tick()
73 if (packet.GetDestinationAddress() == address_ && in ReceiveLinkLayerPacket()
79 address_, packet.GetSourceAddress(), AddressType::PUBLIC, in ReceiveLinkLayerPacket()
Dsniffer.cc36 Address::FromString(args[1], address_); in Sniffer()
46 bool match_source = address_ == source; in ReceiveLinkLayerPacket()
47 bool match_dest = address_ == dest; in ReceiveLinkLayerPacket()
Ddevice.h50 void SetAddress(Address address) { address_.address = address.address; } in SetAddress()
53 const Address& GetAddress() const { return address_; } in GetAddress()
78 Address address_;
Ddevice.cc37 ASSERT(Address::FromString("BB:BB:BB:BB:BB:AD", address_)); in Device()
41 return GetTypeString() + "@" + address_.ToString(); in ToString()
/packages/modules/Bluetooth/tools/rootcanal/model/controller/
Dsco_connection.h88 : address_(address), in ScoConnection()
98 Address GetAddress() const { return address_; } in GetAddress()
121 Address address_;
/packages/modules/Bluetooth/tools/rootcanal/test/controller/le/
Dle_periodic_advertising_create_sync_cancel_test.cc31 Address address_{0}; member in rootcanal::LePeriodicAdvertisingCreateSyncCancelTest
33 LinkLayerController controller_{address_, properties_};
Dle_clear_periodic_advertiser_list_test.cc36 Address address_{0}; member in rootcanal::LeClearPeriodicAdvertiserListTest
38 LinkLayerController controller_{address_, properties_};
Dle_create_connection_cancel_test.cc32 Address address_{0}; member in rootcanal::LeCreateConnectionCancelTest
34 LinkLayerController controller_{address_, properties_};
Dle_remove_device_from_periodic_advertiser_list_test.cc36 Address address_{0}; member in rootcanal::LeRemoveDeviceFromPeriodicAdvertiserListTest
38 LinkLayerController controller_{address_, properties_};
Dle_set_random_address_test.cc32 Address address_{0}; member in rootcanal::LeSetRandomAddressTest
34 LinkLayerController controller_{address_, properties_};
Dle_periodic_advertising_create_sync_test.cc31 Address address_{0}; member in rootcanal::LePeriodicAdvertisingCreateSyncTest
33 LinkLayerController controller_{address_, properties_};
Dle_set_address_resolution_enable_test.cc32 Address address_{0}; member in rootcanal::LeSetAddressResolutionEnableTest
34 LinkLayerController controller_{address_, properties_};
Dle_set_scan_parameters_test.cc31 Address address_{0}; member in rootcanal::LeSetScanParametersTest
33 LinkLayerController controller_{address_, properties_};
/packages/modules/Bluetooth/system/gd/security/internal/
Dsecurity_manager_impl.cc161 pending_le_pairing_.address_ = address; in CreateBondLe()
405 if (pending_le_pairing_.address_ == address) { in OnPairingPromptAccepted()
416 if (pending_le_pairing_.address_ == address) { in OnConfirmYesNo()
427 if (pending_le_pairing_.address_ == address) { in OnPasskeyEntry()
510 if (pending_le_pairing_.address_ == device) { in OnSmpCommandLe()
578 pending_le_pairing_.address_ = device; in OnSmpCommandLe()
598 if (pending_le_pairing_.address_ != channel->GetDevice()) { in OnConnectionOpenLe()
655 if (pending_le_pairing_.address_ != address) { in OnConnectionClosedLe()
677 …NotifyDeviceBondFailed(pending_le_pairing_.address_, PairingFailure("Connection establishment fail… in OnConnectionFailureLe()
714 LeFixedChannelEntry* stored_chan = FindStoredLeChannel(pending_le_pairing_.address_); in OnPairingFinished()
[all …]

123