Searched refs:propertyGroup (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/media/java/android/mtp/ |
D | MtpDatabase.java | 750 MtpPropertyGroup propertyGroup; in getObjectPropertyList() local 752 propertyGroup = mPropertyGroupsByFormat.get(format); in getObjectPropertyList() 753 if (propertyGroup == null) { in getObjectPropertyList() 755 propertyGroup = new MtpPropertyGroup(this, mMediaProvider, mPackageName, in getObjectPropertyList() 757 mPropertyGroupsByFormat.put(new Integer(format), propertyGroup); in getObjectPropertyList() 760 propertyGroup = mPropertyGroupsByProperty.get(property); in getObjectPropertyList() 761 if (propertyGroup == null) { in getObjectPropertyList() 763 propertyGroup = new MtpPropertyGroup(this, mMediaProvider, mPackageName, in getObjectPropertyList() 765 mPropertyGroupsByProperty.put(new Integer((int)property), propertyGroup); in getObjectPropertyList() 769 return propertyGroup.getPropertyList((int)handle, format, depth); in getObjectPropertyList()
|