Home
last modified time | relevance | path

Searched refs:getServiceUuids (Results 1 – 13 of 13) sorted by relevance

/packages/modules/Bluetooth/framework/tests/unit/src/android/bluetooth/le/
DScanRecordTest.java184 assertThat(data.getServiceUuids()).isNotNull(); in testParser()
185 assertThat(data.getServiceUuids().contains(uuid1)).isTrue(); in testParser()
186 assertThat(data.getServiceUuids().contains(uuid2)).isTrue(); in testParser()
252 assertThat(data.getServiceUuids()).isNotNull(); in testParserMultipleManufacturerSpecificData()
253 assertThat(data.getServiceUuids().contains(uuid1)).isTrue(); in testParserMultipleManufacturerSpecificData()
254 assertThat(data.getServiceUuids().contains(uuid2)).isTrue(); in testParserMultipleManufacturerSpecificData()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/
DAppAdvertiseStats.java149 advertiseData.getServiceUuids()); in recordAdvertiseStart()
159 scanResponse.getServiceUuids()); in recordAdvertiseStart()
169 periodicData.getServiceUuids()); in recordAdvertiseStart()
238 data.getServiceUuids()); in setAdvertisingData()
244 mAdvertisingData.serviceUuids = data.getServiceUuids(); in setAdvertisingData()
256 data.getServiceUuids()); in setScanResponseData()
262 mScanResponseData.serviceUuids = data.getServiceUuids(); in setScanResponseData()
294 data.getServiceUuids()); in setPeriodicAdvertisingData()
300 mPeriodicAdvertisingData.serviceUuids = data.getServiceUuids(); in setPeriodicAdvertisingData()
DAdvertiseHelper.java107 if (data.getServiceUuids() != null) { in advertiseDataToBytes()
112 for (ParcelUuid parcelUuid : data.getServiceUuids()) { in advertiseDataToBytes()
/packages/modules/Bluetooth/framework/tests/bumble/src/android/bluetooth/
DLeScanningTest.java98 assertThat(results.get(0).getScanRecord().getServiceUuids().get(0)) in startBleScan_withCallbackTypeAllMatches()
100 assertThat(results.get(1).getScanRecord().getServiceUuids().get(0)) in startBleScan_withCallbackTypeAllMatches()
214 assertThat(results.get(0).getScanRecord().getServiceUuids()).isNotEmpty(); in startBleScan_withPendingIntentAndDynamicReceiverAndCallbackTypeAllMatches()
215 assertThat(results.get(0).getScanRecord().getServiceUuids().get(0)) in startBleScan_withPendingIntentAndDynamicReceiverAndCallbackTypeAllMatches()
217 assertThat(results.get(0).getScanRecord().getServiceUuids()) in startBleScan_withPendingIntentAndDynamicReceiverAndCallbackTypeAllMatches()
250 assertThat(results.get(0).getScanRecord().getServiceUuids()).isNotEmpty(); in startBleScan_withPendingIntentAndStaticReceiverAndCallbackTypeAllMatches()
251 assertThat(results.get(0).getScanRecord().getServiceUuids()) in startBleScan_withPendingIntentAndStaticReceiverAndCallbackTypeAllMatches()
367 + result.getScanRecord().getServiceUuids()); in startScanning()
/packages/modules/Bluetooth/framework/java/android/bluetooth/le/
DBluetoothLeAdvertiser.java652 if (data.getServiceUuids() != null) {
656 for (ParcelUuid uuid : data.getServiceUuids()) {
DAdvertiseData.java77 public List<ParcelUuid> getServiceUuids() { in getServiceUuids() method in AdvertiseData
DScanRecord.java377 public List<ParcelUuid> getServiceUuids() { in getServiceUuids() method in ScanRecord
DScanFilter.java473 mServiceUuid, mServiceUuidMask, scanRecord.getServiceUuids())) { in matches()
/packages/apps/Settings/tests/robotests/src/com/android/settings/accessibility/
DHearingDevicePairingFragmentTest.java309 doReturn(List.of(BluetoothUuid.HAS)).when(scanRecord).getServiceUuids(); in createHasScanResult()
/packages/apps/Settings/src/com/android/settings/accessibility/
DHearingDevicePairingFragment.java431 List<ParcelUuid> uuids = scanRecord.getServiceUuids(); in isAndroidCompatibleHearingAid()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/bass_client/
DBassClientStateMachineTest.java646 assertThat(data.getServiceUuids()).contains(BassConstants.BASIC_AUDIO_UUID); in parseScanRecord_withBaseData_callsUpdateBase()
/packages/modules/Bluetooth/framework/api/
Dcurrent.txt1152 method public java.util.List<android.os.ParcelUuid> getServiceUuids();
1369 method public java.util.List<android.os.ParcelUuid> getServiceUuids();
/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothAdapter.java4274 List<ParcelUuid> scanServiceUuids = scanRecord.getServiceUuids(); in startLeScan()