Home
last modified time | relevance | path

Searched refs:getDeviceMacAddress (Results 1 – 7 of 7) sorted by relevance

/aosp12/frameworks/base/services/companion/java/com/android/server/companion/
H A DCompanionDeviceManagerService.java492 a -> a.getDeviceMacAddress())); in getAssociations()
605 a -> Objects.equals(a.getDeviceMacAddress(), macAddress)); in isDeviceAssociatedForWifiConnection()
645 association.getDeviceMacAddress(), in registerDevicePresenceListenerActive()
731 .append(a.getDeviceMacAddress()).append('\n'); in dump()
754 || !Objects.equals(association.getDeviceMacAddress(), deviceMacAddress) in removeAssociation()
845 if (mCurrentlyConnectedDevices.contains(association.getDeviceMacAddress())) { in updateSpecialAccessPermissionAsSystem()
1007 association.getDeviceMacAddress());
1133 if (Objects.equals(address, association.getDeviceMacAddress())) {
1352 if (Objects.equals(association.getDeviceMacAddress(), deviceAddress)) {
1466 String address = association.getDeviceMacAddress();
[all …]
/aosp12/frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/
H A DCompanionDeviceDiscoveryService.java20 import static android.companion.BluetoothDeviceFilterUtils.getDeviceMacAddress;
396 return Objects.equals(getDeviceMacAddress(device), getDeviceMacAddress(that.device)); in equals()
401 return Objects.hash(getDeviceMacAddress(device)); in hashCode()
H A DCompanionDeviceActivity.java19 import static android.companion.BluetoothDeviceFilterUtils.getDeviceMacAddress;
256 getCallingPackage(), getDeviceMacAddress(selectedDevice.device)); in onDeviceConfirmed()
/aosp12/frameworks/base/core/java/android/companion/
H A DBluetoothDeviceFilterUtils.java135 public static String getDeviceMacAddress(@NonNull Parcelable device) { in getDeviceMacAddress() method in BluetoothDeviceFilterUtils
141 return getDeviceMacAddress(((android.bluetooth.le.ScanResult) device).getDevice()); in getDeviceMacAddress()
H A DAssociation.java101 public @NonNull String getDeviceMacAddress() { in getDeviceMacAddress() method in Association
/aosp12/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothDetailsCompanionAppsController.java94 a -> Objects.equal(address, a.getDeviceMacAddress())); in getAssociations()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/
H A DUtils.java349 && association.getDeviceMacAddress().equals(device.getAddress())) { in enforceCdmAssociation()