Home
last modified time | relevance | path

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

/frameworks/base/media/java/android/mtp/
DMtpDatabase.java525 MtpPropertyGroup propertyGroup; in getObjectPropertyList() local
534 propertyGroup = mPropertyGroupsByFormat.get(format); in getObjectPropertyList()
535 if (propertyGroup == null) { in getObjectPropertyList()
537 propertyGroup = new MtpPropertyGroup(propertyList); in getObjectPropertyList()
538 mPropertyGroupsByFormat.put(format, propertyGroup); in getObjectPropertyList()
542 propertyGroup = mPropertyGroupsByProperty.get(property); in getObjectPropertyList()
543 if (propertyGroup == null) { in getObjectPropertyList()
545 propertyGroup = new MtpPropertyGroup(propertyList); in getObjectPropertyList()
546 mPropertyGroupsByProperty.put(property, propertyGroup); in getObjectPropertyList()
549 int err = propertyGroup.getPropertyList(mMediaProvider, obj.getVolumeName(), obj, ret); in getObjectPropertyList()