Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
DAvrcpItem.java302 public Builder fromAvrcpAttributeArray(int[] attrIds, String[] attrMap) { in fromAvrcpAttributeArray() argument
303 int attributeCount = Math.max(attrIds.length, attrMap.length); in fromAvrcpAttributeArray()
305 if (DBG) Log.d(TAG, attrIds[i] + " = " + attrMap[i]); in fromAvrcpAttributeArray()
308 mAvrcpItem.mTitle = attrMap[i]; in fromAvrcpAttributeArray()
311 mAvrcpItem.mArtistName = attrMap[i]; in fromAvrcpAttributeArray()
314 mAvrcpItem.mAlbumName = attrMap[i]; in fromAvrcpAttributeArray()
318 mAvrcpItem.mTrackNumber = Long.valueOf(attrMap[i]); in fromAvrcpAttributeArray()
325 mAvrcpItem.mTotalNumberOfTracks = Long.valueOf(attrMap[i]); in fromAvrcpAttributeArray()
331 mAvrcpItem.mGenre = attrMap[i]; in fromAvrcpAttributeArray()
335 mAvrcpItem.mPlayingTime = Long.valueOf(attrMap[i]); in fromAvrcpAttributeArray()
[all …]
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/
DAvrcpItemTest.java135 String[] attrMap = new String[]{ in buildAvrcpItemFromAvrcpAttributes() local
147 builder.fromAvrcpAttributeArray(attrIds, attrMap); in buildAvrcpItemFromAvrcpAttributes()
191 String[] attrMap = new String[]{ in buildAvrcpItemFromAvrcpAttributesWithBadIds_badIdsIgnored() local
207 builder.fromAvrcpAttributeArray(attrIds, attrMap); in buildAvrcpItemFromAvrcpAttributesWithBadIds_badIdsIgnored()