Home
last modified time | relevance | path

Searched refs:AvrcpCoverArtManager (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/avrcpcontroller/
DAvrcpBipClientTest.java62 private AvrcpCoverArtManager mArtManager;
79 AvrcpCoverArtManager.Callback callback = (device, event) -> {}; in setUp()
80 mArtManager = new AvrcpCoverArtManager(mService, callback); in setUp()
DAvrcpControllerStateMachineTest.java90 @Mock private AvrcpCoverArtManager mCoverArtManager;
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcpcontroller/
DAvrcpControllerService.java111 protected AvrcpCoverArtManager mCoverArtManager;
113 private class ImageDownloadCallback implements AvrcpCoverArtManager.Callback {
116 BluetoothDevice device, AvrcpCoverArtManager.DownloadEvent event) { in onImageDownloadComplete()
159 mCoverArtManager = new AvrcpCoverArtManager(this, new ImageDownloadCallback()); in start()
758 protected AvrcpCoverArtManager getCoverArtManager() { in getCoverArtManager()
DAvrcpCoverArtManager.java40 public class AvrcpCoverArtManager { class
41 private static final String TAG = AvrcpCoverArtManager.class.getSimpleName();
139 public AvrcpCoverArtManager(AvrcpControllerService service, Callback callback) { in AvrcpCoverArtManager() method in AvrcpCoverArtManager
DAvrcpCoverArtProvider.java84 AvrcpCoverArtManager manager = service.getCoverArtManager(); in getImage()
DAvrcpControllerStateMachine.java122 protected final AvrcpCoverArtManager mCoverArtManager;
713 AvrcpCoverArtManager.DownloadEvent event = in processMessage()
714 (AvrcpCoverArtManager.DownloadEvent) msg.obj; in processMessage()
DAvrcpItem.java230 return AvrcpCoverArtManager.isValidImageHandle(handle) ? handle : null; in parseImageHandle()