Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcpcontroller/
DBrowseTree.java67 private final HashMap<String, ArrayList<String>> mCoverArtMap = field in BrowseTree
132 mCoverArtMap.clear(); in clear()
465 mCoverArtMap.putIfAbsent(handle, new ArrayList<String>()); in indicateCoverArtUsed()
466 mCoverArtMap.get(handle).add(nodeId); in indicateCoverArtUsed()
471 if (mCoverArtMap.containsKey(handle) && mCoverArtMap.get(handle).contains(nodeId)) { in indicateCoverArtUnused()
472 mCoverArtMap.get(handle).remove(nodeId); in indicateCoverArtUnused()
478 if (!mCoverArtMap.containsKey(handle)) return Collections.emptyList(); in getNodesUsingCoverArt()
479 return (List<String>) mCoverArtMap.get(handle).clone(); in getNodesUsingCoverArt()
485 for (String uuid : mCoverArtMap.keySet()) { in getAndClearUnusedCoverArt()
486 if (mCoverArtMap.get(uuid).isEmpty()) { in getAndClearUnusedCoverArt()
[all …]