Home
last modified time | relevance | path

Searched refs:PAN_UUIDS (Results 1 – 2 of 2) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/bluetooth/
DBluetoothUtilsTest.java53 private static final ParcelUuid[] PAN_UUIDS = field in BluetoothUtilsTest
231 when(mMockBluetoothDevice.getUuids()).thenReturn(PAN_UUIDS); in testIsPanProfileSupportedBothSupported_returnsTrue()
232 assertThat(BluetoothUtils.isProfileSupported(Arrays.asList(PAN_UUIDS), in testIsPanProfileSupportedBothSupported_returnsTrue()
238 when(mMockBluetoothDevice.getUuids()).thenReturn(PAN_UUIDS); in testIsPanProfileSupportedRemoteSupported_returnsFalse()
246 assertThat(BluetoothUtils.isProfileSupported(Arrays.asList(PAN_UUIDS), in testIsPanProfileSupportedLocalSupported_returnsFalse()
/packages/services/Car/service/src/com/android/car/bluetooth/
DBluetoothUtils.java68 private static final ParcelUuid[] PAN_UUIDS = field in BluetoothUtils
247 return BluetoothUuid.containsAnyUuid(ourUuids, PAN_UUIDS) in isProfileSupported()
248 && BluetoothUuid.containsAnyUuid(uuids, PAN_UUIDS); in isProfileSupported()