Lines Matching refs:FORMAT
69 // cached property groups for all properties for a given format
91 Files.FileColumns.FORMAT, // 3
96 Files.FileColumns.FORMAT, // 2
107 private static final String PARENT_WHERE = Files.FileColumns.FORMAT + "=?";
109 + Files.FileColumns.FORMAT + "=?";
259 private int beginSendObject(String path, int format, int parent,
286 values.put(Files.FileColumns.FORMAT, format);
305 private void endSendObject(String path, int handle, int format, boolean succeeded) {
309 if (format == MtpConstants.FORMAT_ABSTRACT_AV_PLAYLIST) {
324 values.put(Files.FileColumns.FORMAT, format);
333 mMediaScanner.scanMtpFile(path, mVolumeName, handle, format);
340 private Cursor createObjectQuery(int storageID, int format, int parent) throws RemoteException {
346 if (format == 0) {
361 // query specific format
365 whereArgs = new String[] { Integer.toString(format) };
372 whereArgs = new String[] { Integer.toString(format),
378 if (format == 0) {
394 // query specific format
399 Integer.toString(format) };
407 Integer.toString(format),
439 private int[] getObjectList(int storageID, int format, int parent) {
442 c = createObjectQuery(storageID, format, parent);
465 private int getNumObjects(int storageID, int format, int parent) {
468 c = createObjectQuery(storageID, format, parent);
635 private int[] getSupportedObjectProperties(int format) {
636 switch (format) {
668 private MtpPropertyList getObjectPropertyList(long handle, int format, long property,
677 propertyGroup = mPropertyGroupsByFormat.get(format);
679 int[] propertyList = getSupportedObjectProperties(format);
681 mPropertyGroupsByFormat.put(new Integer(format), propertyGroup);
692 return propertyGroup.getPropertyList((int)handle, format, depth);
885 int format = 0;
895 format = c.getInt(3);
900 if (path == null || format == 0) {
909 if (format == MtpConstants.FORMAT_ASSOCIATION) {