Home
last modified time | relevance | path

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

/frameworks/base/media/java/android/mtp/
DMtpDatabase.java723 MtpPropertyGroup propertyGroup; in getObjectPropertyList() local
729 propertyGroup = mPropertyGroupsByFormat.get(format); in getObjectPropertyList()
730 if (propertyGroup == null) { in getObjectPropertyList()
732 propertyGroup = new MtpPropertyGroup(this, mMediaProvider, in getObjectPropertyList()
734 mPropertyGroupsByFormat.put(format, propertyGroup); in getObjectPropertyList()
737 propertyGroup = mPropertyGroupsByProperty.get(property); in getObjectPropertyList()
738 if (propertyGroup == null) { in getObjectPropertyList()
740 propertyGroup = new MtpPropertyGroup( in getObjectPropertyList()
742 mPropertyGroupsByProperty.put(property, propertyGroup); in getObjectPropertyList()
746 return propertyGroup.getPropertyList(handle, format, depth); in getObjectPropertyList()