Home
last modified time | relevance | path

Searched refs:mUuids (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
DAvrcpCoverArtManager.java94 private Map<String, String> mUuids = new ConcurrentHashMap<>(1); /* handle -> UUID */ field in AvrcpCoverArtManager.AvrcpBipSession
104 String existingUuid = mUuids.putIfAbsent(handle, newUuid); in getHandleUuid()
115 mUuids.clear(); in clearHandleUuids()
120 return mUuids.keySet(); in getSessionHandles()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DBluetoothProfileDeviceManagerTest.java108 private ParcelUuid[] mUuids = new ParcelUuid[] { field in BluetoothProfileDeviceManagerTest
1084 doReturn(mUuids).when(device).getUuids(); in testReceiveSupportedDeviceBonded_deviceAdded()
1126 sendDeviceUuids(device, mUuids); in testReceiveUuidDevicePriorityAutoConnect_doNothing()
1147 sendDeviceUuids(device, mUuids); in testReceiveUuidDevicePriorityOn_doNothing()
1168 sendDeviceUuids(device, mUuids); in testReceiveUuidDevicePriorityOff_doNothing()
1191 sendDeviceUuids(device, mUuids); in testReceiveUuidDevicePriorityUndefinedBonding_setPriorityOn()
1213 sendDeviceUuids(device, mUuids); in testReceiveUuidDevicePriorityUndefined_setPriorityOn()
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
DRemoteDevices.java248 @VisibleForTesting ParcelUuid[] mUuids; field in RemoteDevices.DeviceProperties
277 return mUuids; in getUuids()
353 mUuids = null; in setBondState()
414 intent.putExtra(BluetoothDevice.EXTRA_UUID, prop == null ? null : prop.mUuids); in sendUuidIntent()
589 if (areUuidsEqual(newUuids, device.mUuids)) { in devicePropertyChangedCallback()
593 device.mUuids = newUuids; in devicePropertyChangedCallback()
DAdapterProperties.java87 private volatile ParcelUuid[] mUuids; field in AdapterProperties
393 return mUuids; in getUuids()
897 mUuids = Utils.byteArrayToUuid(val); in adapterPropertyChangedCallback()
/packages/services/Car/service/src/com/android/car/
DBluetoothProfileDeviceManager.java79 final ParcelUuid[] mUuids; field in BluetoothProfileDeviceManager.BluetoothProfileInfo
86 mUuids = uuids; in BluetoothProfileInfo()
329 mProfileUuids = bpi.mUuids; in BluetoothProfileDeviceManager()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/
DBondStateMachineTest.java301 mDeviceProperties.mUuids = TEST_UUIDS; in testSendIntentNoPendingDeviceWithUuid()
310 mDeviceProperties.mUuids = TEST_UUIDS; in testSendIntentPendingDeviceWithUuid()