Home
last modified time | relevance | path

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

/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/
H A DAvrcpCoverArtStorageTest.java98 Assert.assertFalse(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addNewImage_imageExists()
103 Assert.assertTrue(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addNewImage_imageExists()
109 Assert.assertFalse(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addExistingImage_imageUpdated()
112 Assert.assertTrue(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addExistingImage_imageUpdated()
117 Assert.assertTrue(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addExistingImage_imageUpdated()
126 Assert.assertFalse(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addTwoImageSameDevice_bothExist()
127 Assert.assertFalse(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle2)); in addTwoImageSameDevice_bothExist()
132 Assert.assertTrue(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addTwoImageSameDevice_bothExist()
135 Assert.assertTrue(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle2)); in addTwoImageSameDevice_bothExist()
149 Assert.assertTrue(mAvrcpCoverArtStorage.doesImageExist(mDevice1, mHandle1)); in addTwoImageDifferentDevices_bothExist()
[all …]
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
H A DAvrcpCoverArtManager.java279 if (mCoverArtStorage.doesImageExist(device, imageUuid)) { in getImageUri()
309 if (mCoverArtStorage.doesImageExist(device, imageUuid)) { in downloadImage()
H A DAvrcpCoverArtStorage.java59 public boolean doesImageExist(BluetoothDevice device, String imageUuid) { in doesImageExist() method in AvrcpCoverArtStorage