/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pan/ |
D | PanNativeInterface.java | 67 boolean connect(byte[] identityAddress) { in connect() argument 68 requireNonNull(identityAddress, "Identity address can not be null"); in connect() 70 identityAddress, BluetoothPan.LOCAL_PANU_ROLE, BluetoothPan.REMOTE_NAP_ROLE); in connect() 73 boolean disconnect(byte[] identityAddress) { in disconnect() argument 74 requireNonNull(identityAddress, "Identity address can not be null"); in disconnect() 75 return disconnectPanNative(identityAddress); in disconnect()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/ |
D | DistanceMeasurementTracker.java | 46 String identityAddress, in DistanceMeasurementTracker() argument 52 mIdentityAddress = identityAddress; in DistanceMeasurementTracker() 78 public boolean equals(UUID uuid, String identityAddress) { in equals() argument 82 if (!Objects.equals(mIdentityAddress, identityAddress)) { in equals()
|
D | DistanceMeasurementManager.java | 207 private synchronized int stopRssiTracker(UUID uuid, String identityAddress, boolean timeout) { in stopRssiTracker() argument 208 CopyOnWriteArraySet<DistanceMeasurementTracker> set = mRssiTrackers.get(identityAddress); in stopRssiTracker() 215 if (tracker.equals(uuid, identityAddress)) { in stopRssiTracker() 229 mRssiTrackers.remove(identityAddress); in stopRssiTracker() 231 identityAddress, DistanceMeasurementMethod.DISTANCE_MEASUREMENT_METHOD_RSSI); in stopRssiTracker() 236 private synchronized int stopCsTracker(UUID uuid, String identityAddress, boolean timeout) { in stopCsTracker() argument 237 CopyOnWriteArraySet<DistanceMeasurementTracker> set = mCsTrackers.get(identityAddress); in stopCsTracker() 244 if (tracker.equals(uuid, identityAddress)) { in stopCsTracker() 258 mCsTrackers.remove(identityAddress); in stopCsTracker() 260 identityAddress, in stopCsTracker()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcp/ |
D | AvrcpNativeInterface.java | 98 String identityAddress = in setBipClientStatus() local 102 setBipClientStatusNative(identityAddress, connected); in setBipClientStatus() 238 String identityAddress = in disconnectDevice() local 242 d("disconnectDevice: identityAddress=" + identityAddress); in disconnectDevice() 243 return disconnectDeviceNative(identityAddress); in disconnectDevice() 279 String identityAddress = in sendVolumeChanged() local 283 sendVolumeChangedNative(identityAddress, volume); in sendVolumeChanged()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/ |
D | BluetoothOppPreference.java | 109 String identityAddress = getBrEdrAddress(remoteDevice); in getName() local 110 if (identityAddress != null && identityAddress.equals("FF:FF:FF:00:00:00")) { in getName() 114 String name = mNames.get(identityAddress); in getName()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/ |
D | BluetoothObexTransport.java | 113 String identityAddress = in getRemoteAddress() local 118 ? identityAddress in getRemoteAddress()
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/btservice/ |
D | AdapterServiceTest.java | 959 String identityAddress = mAdapterService.getIdentityAddress(TEST_BT_ADDR_1); in testAddressConsolidation() local 961 assertThat(identityAddress).isEqualTo(TEST_BT_ADDR_1); in testAddressConsolidation() 970 identityAddress = mAdapterService.getIdentityAddress(TEST_BT_ADDR_1); in testAddressConsolidation() 971 assertThat(identityAddress).isEqualTo(TEST_BT_ADDR_2); in testAddressConsolidation()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/btservice/ |
D | AdapterProperties.java | 660 String identityAddress = in cleanupPrevBondRecordsFor() local 666 if (identityAddress == null) { in cleanupPrevBondRecordsFor() 684 if (identityAddress.equals(existingIdentityAddress) in cleanupPrevBondRecordsFor()
|
D | RemoteDevices.java | 330 void setIdentityAddress(String identityAddress) { in setIdentityAddress() argument 332 this.mIdentityAddress = identityAddress; in setIdentityAddress()
|
D | AdapterService.java | 4976 final String identityAddress = getIdentityAddress(address); in getConnectionState() local 4977 if (identityAddress != null) { in getConnectionState() 4979 mNativeInterface.getConnectionState(getBytesFromAddress(identityAddress)); in getConnectionState()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/le_scan/ |
D | TransitionalScanHelper.java | 364 String identityAddress = mAdapterService.getIdentityAddress(address); in onScanResultInternal() local 365 if (!address.equals(identityAddress)) { in onScanResultInternal() 371 + identityAddress); in onScanResultInternal() 372 originalAddress = identityAddress; in onScanResultInternal()
|
/packages/modules/Bluetooth/framework/tests/bumble/src/android/bluetooth/ |
D | DckGattTest.kt | 253 assertThat(scanResult.device.identityAddress).isEqualTo(TEST_ADDRESS_RANDOM_STATIC) in testGattConnect_fromIrkScan()
|