Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcpcontroller/
DAvrcpItem.java325 public Builder fromAvrcpAttributeArray(int[] attrIds, String[] attrMap) { in fromAvrcpAttributeArray() argument
326 int attributeCount = Math.max(attrIds.length, attrMap.length); in fromAvrcpAttributeArray()
328 Log.d(TAG, attrIds[i] + " = " + attrMap[i]); in fromAvrcpAttributeArray()
331 mAvrcpItem.mTitle = attrMap[i]; in fromAvrcpAttributeArray()
334 mAvrcpItem.mArtistName = attrMap[i]; in fromAvrcpAttributeArray()
337 mAvrcpItem.mAlbumName = attrMap[i]; in fromAvrcpAttributeArray()
341 mAvrcpItem.mTrackNumber = Long.valueOf(attrMap[i]); in fromAvrcpAttributeArray()
348 mAvrcpItem.mTotalNumberOfTracks = Long.valueOf(attrMap[i]); in fromAvrcpAttributeArray()
354 mAvrcpItem.mGenre = attrMap[i]; in fromAvrcpAttributeArray()
358 mAvrcpItem.mPlayingTime = Long.valueOf(attrMap[i]); in fromAvrcpAttributeArray()
[all …]
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/avrcpcontroller/
DAvrcpItemTest.java122 String[] attrMap = in buildAvrcpItemFromAvrcpAttributes() local
128 builder.fromAvrcpAttributeArray(attrIds, attrMap); in buildAvrcpItemFromAvrcpAttributes()
173 String[] attrMap = in buildAvrcpItemFromAvrcpAttributesWithBadIds_badIdsIgnored() local
190 builder.fromAvrcpAttributeArray(attrIds, attrMap); in buildAvrcpItemFromAvrcpAttributesWithBadIds_badIdsIgnored()
231 String[] attrMap = in buildAvrcpItemFromAvrcpAttributes_imageHandleTooShort() local
237 builder.fromAvrcpAttributeArray(attrIds, attrMap); in buildAvrcpItemFromAvrcpAttributes_imageHandleTooShort()
278 String[] attrMap = in buildAvrcpItemFromAvrcpAttributes_imageHandleEmpty() local
284 builder.fromAvrcpAttributeArray(attrIds, attrMap); in buildAvrcpItemFromAvrcpAttributes_imageHandleEmpty()
325 String[] attrMap = in buildAvrcpItemFromAvrcpAttributes_imageHandleNull() local
331 builder.fromAvrcpAttributeArray(attrIds, attrMap); in buildAvrcpItemFromAvrcpAttributes_imageHandleNull()
[all …]