Home
last modified time | relevance | path

Searched refs:identityAddress (Results 1 – 12 of 12) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pan/
DPanNativeInterface.java67 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/
DDistanceMeasurementTracker.java46 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()
DDistanceMeasurementManager.java207 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/
DAvrcpNativeInterface.java98 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/
DBluetoothOppPreference.java109 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/
DBluetoothObexTransport.java113 String identityAddress = in getRemoteAddress() local
118 ? identityAddress in getRemoteAddress()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/btservice/
DAdapterServiceTest.java959 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/
DAdapterProperties.java660 String identityAddress = in cleanupPrevBondRecordsFor() local
666 if (identityAddress == null) { in cleanupPrevBondRecordsFor()
684 if (identityAddress.equals(existingIdentityAddress) in cleanupPrevBondRecordsFor()
DRemoteDevices.java330 void setIdentityAddress(String identityAddress) { in setIdentityAddress() argument
332 this.mIdentityAddress = identityAddress; in setIdentityAddress()
DAdapterService.java4976 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/
DTransitionalScanHelper.java364 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/
DDckGattTest.kt253 assertThat(scanResult.device.identityAddress).isEqualTo(TEST_ADDRESS_RANDOM_STATIC) in testGattConnect_fromIrkScan()