Lines Matching refs:format

81     // cached property groups for all properties for a given format
339 private int beginSendObject(String path, int format, int parent,
371 values.put(Files.FileColumns.FORMAT, format);
390 private void endSendObject(String path, int handle, int format, boolean succeeded) {
394 if (format == MtpConstants.FORMAT_ABSTRACT_AV_PLAYLIST) {
409 values.put(Files.FileColumns.FORMAT, format);
419 mMediaScanner.scanMtpFile(path, handle, format);
426 private Cursor createObjectQuery(int storageID, int format, int parent) throws RemoteException {
432 if (format == 0) {
447 // query specific format
451 whereArgs = new String[] { Integer.toString(format) };
458 whereArgs = new String[] { Integer.toString(format),
464 if (format == 0) {
480 // query specific format
485 Integer.toString(format) };
493 Integer.toString(format),
526 private int[] getObjectList(int storageID, int format, int parent) {
529 c = createObjectQuery(storageID, format, parent);
552 private int getNumObjects(int storageID, int format, int parent) {
555 c = createObjectQuery(storageID, format, parent);
694 private int[] getSupportedObjectProperties(int format) {
695 switch (format) {
728 private MtpPropertyList getObjectPropertyList(int handle, int format, int property,
737 if (format == 0 && handle != 0 && handle != 0xffffffff) {
738 // return properties based on the object's format
739 format = getObjectFormat(handle);
741 propertyGroup = mPropertyGroupsByFormat.get(format);
743 int[] propertyList = getSupportedObjectProperties(format);
746 mPropertyGroupsByFormat.put(format, propertyGroup);
758 return propertyGroup.getPropertyList(handle, format, depth);
1007 int format = 0;
1017 format = c.getInt(2);
1022 if (path == null || format == 0) {
1031 if (format == MtpConstants.FORMAT_ASSOCIATION) {
1043 if (format != MtpConstants.FORMAT_ASSOCIATION