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.java321 public Builder fromAvrcpAttributeArray(int[] attrIds, String[] attrMap) { in fromAvrcpAttributeArray() argument
322 int attributeCount = Math.max(attrIds.length, attrMap.length); in fromAvrcpAttributeArray()
324 Log.d(TAG, attrIds[i] + " = " + attrMap[i]); in fromAvrcpAttributeArray()
327 mAvrcpItem.mTitle = attrMap[i]; in fromAvrcpAttributeArray()
330 mAvrcpItem.mArtistName = attrMap[i]; in fromAvrcpAttributeArray()
333 mAvrcpItem.mAlbumName = attrMap[i]; in fromAvrcpAttributeArray()
337 mAvrcpItem.mTrackNumber = Long.valueOf(attrMap[i]); in fromAvrcpAttributeArray()
344 mAvrcpItem.mTotalNumberOfTracks = Long.valueOf(attrMap[i]); in fromAvrcpAttributeArray()
350 mAvrcpItem.mGenre = attrMap[i]; in fromAvrcpAttributeArray()
354 mAvrcpItem.mPlayingTime = Long.valueOf(attrMap[i]); in fromAvrcpAttributeArray()
[all …]
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/avrcpcontroller/
DAvrcpItemTest.java132 String[] attrMap = in buildAvrcpItemFromAvrcpAttributes() local
138 builder.fromAvrcpAttributeArray(attrIds, attrMap); in buildAvrcpItemFromAvrcpAttributes()
183 String[] attrMap = in buildAvrcpItemFromAvrcpAttributesWithBadIds_badIdsIgnored() local
200 builder.fromAvrcpAttributeArray(attrIds, attrMap); in buildAvrcpItemFromAvrcpAttributesWithBadIds_badIdsIgnored()
241 String[] attrMap = in buildAvrcpItemFromAvrcpAttributes_imageHandleTooShort() local
247 builder.fromAvrcpAttributeArray(attrIds, attrMap); in buildAvrcpItemFromAvrcpAttributes_imageHandleTooShort()
288 String[] attrMap = in buildAvrcpItemFromAvrcpAttributes_imageHandleEmpty() local
294 builder.fromAvrcpAttributeArray(attrIds, attrMap); in buildAvrcpItemFromAvrcpAttributes_imageHandleEmpty()
335 String[] attrMap = in buildAvrcpItemFromAvrcpAttributes_imageHandleNull() local
341 builder.fromAvrcpAttributeArray(attrIds, attrMap); in buildAvrcpItemFromAvrcpAttributes_imageHandleNull()
[all …]