Lines Matching refs:FORMAT
69 // cached property groups for all properties for a given format
90 Files.FileColumns.FORMAT, // 2
95 Files.FileColumns.FORMAT, // 2
104 private static final String FORMAT_WHERE = Files.FileColumns.FORMAT + "=?";
107 + Files.FileColumns.FORMAT + "=?";
257 private int beginSendObject(String path, int format, int parent,
284 values.put(Files.FileColumns.FORMAT, format);
303 private void endSendObject(String path, int handle, int format, boolean succeeded) {
307 if (format == MtpConstants.FORMAT_ABSTRACT_AV_PLAYLIST) {
322 values.put(Files.FileColumns.FORMAT, format);
331 mMediaScanner.scanMtpFile(path, mVolumeName, handle, format);
338 private Cursor createObjectQuery(int storageID, int format, int parent) throws RemoteException {
344 if (format == 0) {
359 // query specific format
363 whereArgs = new String[] { Integer.toString(format) };
370 whereArgs = new String[] { Integer.toString(format),
376 if (format == 0) {
392 // query specific format
397 Integer.toString(format) };
405 Integer.toString(format),
437 private int[] getObjectList(int storageID, int format, int parent) {
440 c = createObjectQuery(storageID, format, parent);
463 private int getNumObjects(int storageID, int format, int parent) {
466 c = createObjectQuery(storageID, format, parent);
634 private int[] getSupportedObjectProperties(int format) {
635 switch (format) {
667 private MtpPropertyList getObjectPropertyList(long handle, int format, long property,
676 propertyGroup = mPropertyGroupsByFormat.get(format);
678 int[] propertyList = getSupportedObjectProperties(format);
680 mPropertyGroupsByFormat.put(new Integer(format), propertyGroup);
691 return propertyGroup.getPropertyList((int)handle, format, depth);
908 int format = 0;
918 format = c.getInt(2);
923 if (path == null || format == 0) {
932 if (format == MtpConstants.FORMAT_ASSOCIATION) {
944 if (format != MtpConstants.FORMAT_ASSOCIATION