Home | History | Annotate | Download | only in mtp

Lines Matching refs:FORMAT

70     // cached property groups for all properties for a given format
91 Files.FileColumns.FORMAT, // 2
96 Files.FileColumns.FORMAT, // 2
106 private static final String FORMAT_WHERE = Files.FileColumns.FORMAT + "=?";
109 + Files.FileColumns.FORMAT + "=?";
260 private int beginSendObject(String path, int format, int parent,
287 values.put(Files.FileColumns.FORMAT, format);
306 private void endSendObject(String path, int handle, int format, boolean succeeded) {
310 if (format == MtpConstants.FORMAT_ABSTRACT_AV_PLAYLIST) {
325 values.put(Files.FileColumns.FORMAT, format);
335 mMediaScanner.scanMtpFile(path, mVolumeName, handle, format);
342 private Cursor createObjectQuery(int storageID, int format, int parent) throws RemoteException {
348 if (format == 0) {
363 // query specific format
367 whereArgs = new String[] { Integer.toString(format) };
374 whereArgs = new String[] { Integer.toString(format),
380 if (format == 0) {
396 // query specific format
401 Integer.toString(format) };
409 Integer.toString(format),
442 private int[] getObjectList(int storageID, int format, int parent) {
445 c = createObjectQuery(storageID, format, parent);
468 private int getNumObjects(int storageID, int format, int parent) {
471 c = createObjectQuery(storageID, format, parent);
639 private int[] getSupportedObjectProperties(int format) {
640 switch (format) {
672 private MtpPropertyList getObjectPropertyList(long handle, int format, long property,
681 propertyGroup = mPropertyGroupsByFormat.get(format);
683 int[] propertyList = getSupportedObjectProperties(format);
686 mPropertyGroupsByFormat.put(new Integer(format), propertyGroup);
698 return propertyGroup.getPropertyList((int)handle, format, depth);
921 int format = 0;
931 format = c.getInt(2);
936 if (path == null || format == 0) {
945 if (format == MtpConstants.FORMAT_ASSOCIATION) {
957 if (format != MtpConstants.FORMAT_ASSOCIATION