Home
last modified time | relevance | path

Searched refs:doesImageExist (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/avrcpcontroller/
DAvrcpCoverArtStorageTest.java92 Assert.assertFalse(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addNewImage_imageExists()
97 Assert.assertTrue(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addNewImage_imageExists()
103 Assert.assertFalse(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addExistingImage_imageUpdated()
106 Assert.assertTrue(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addExistingImage_imageUpdated()
111 Assert.assertTrue(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addExistingImage_imageUpdated()
120 Assert.assertFalse(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addTwoImageSameDevice_bothExist()
121 Assert.assertFalse(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle2)); in addTwoImageSameDevice_bothExist()
126 Assert.assertTrue(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addTwoImageSameDevice_bothExist()
129 Assert.assertTrue(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle2)); in addTwoImageSameDevice_bothExist()
137 Assert.assertFalse(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addTwoImageDifferentDevices_bothExist()
[all …]
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcpcontroller/
DAvrcpCoverArtManager.java276 if (mCoverArtStorage.doesImageExist(device, imageUuid)) { in getImageUri()
305 if (mCoverArtStorage.doesImageExist(device, imageUuid)) { in downloadImage()
DAvrcpCoverArtStorage.java54 public boolean doesImageExist(BluetoothDevice device, String imageUuid) { in doesImageExist() method in AvrcpCoverArtStorage