HomeSort by relevance Sort by last modified time
    Searched refs:mtp (Results 1 - 25 of 52) sorted by null

1 2 3

  /frameworks/base/media/java/android/mtp/
MtpDeviceInfo.java 17 package android.mtp;
20 * This class encapsulates information about an MTP device.
22 * section 5.1.1 of the MTP specification.
36 * Returns the manufacturer's name for the MTP device
45 * Returns the model name for the MTP device
54 * Returns the version string the MTP device
63 * Returns the unique serial number for the MTP device
MtpStorageInfo.java 17 package android.mtp;
20 * This class encapsulates information about a storage unit on an MTP device.
22 * section 5.2.2 of the MTP specification.
38 * The storage ID uniquely identifies the storage unit on the MTP device.
67 * MTP host.
MtpObjectInfo.java 17 package android.mtp;
20 * This class encapsulates information about an object on an MTP device.
22 * section 5.3.1 of the MTP specification.
51 * Returns the object handle for the MTP object
60 * Returns the storage ID for the MTP object's storage unit
69 * Returns the format code for the MTP object
78 * Returns the protection status for the MTP object
82 * <li> {@link android.mtp.MtpConstants#PROTECTION_STATUS_NONE}
83 * <li> {@link android.mtp.MtpConstants#PROTECTION_STATUS_READ_ONLY}
84 * <li> {@link android.mtp.MtpConstants#PROTECTION_STATUS_NON_TRANSFERABLE_DATA
    [all...]
MtpPropertyList.java 17 package android.mtp;
MtpServer.java 17 package android.mtp;
20 * Java wrapper for MTP/PTP support as USB responder.
MtpStorage.java 17 package android.mtp;
23 * This class represents a storage unit on an MTP device.
24 * Used only for MTP support in USB responder mode.
25 * MtpStorageInfo is used in MTP host mode
88 * This can be set to a non-zero value to prevent MTP from filling up the entire storage.
MtpDevice.java 17 package android.mtp;
23 * This class represents an MTP or PTP device connected on the USB host bus. An application can
41 * @param device the {@link android.hardware.usb.UsbDevice} for the MTP or PTP device
48 * Opens the MTP device. Once the device is open it takes ownership of the
  /external/libmtp/examples/
evolution-sync.sh 10 SENDFILE=`which mtp-sendfile`
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
IngestObjectInfo.java 4 import android.mtp.MtpDevice;
5 import android.mtp.MtpObjectInfo;
9 * Holds the info needed for the in-memory index of MTP objects.
MtpDeviceIndexRunnable.java 4 import android.mtp.MtpConstants;
5 import android.mtp.MtpDevice;
6 import android.mtp.MtpObjectInfo;
ImportTask.java 21 import android.mtp.MtpDevice;
34 * Task that handles the copying of items from an MTP device.
50 private static final String WAKELOCK_LABEL = "Google Photos MTP Import Task";
MtpBitmapFetch.java 23 import android.mtp.MtpDevice;
32 * Helper class for fetching bitmaps from MTP devices.
MtpDeviceIndex.java 4 import android.mtp.MtpConstants;
5 import android.mtp.MtpDevice;
13 * Index of MTP media objects organized into "buckets," or groupings, based on the date
35 * - size: get the total number of items (bucket labels and MTP objects)
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
ObjectBrowser.java 25 import android.mtp.MtpConstants;
26 import android.mtp.MtpDevice;
27 import android.mtp.MtpObjectInfo;
StorageBrowser.java 22 import android.mtp.MtpDevice;
23 import android.mtp.MtpStorageInfo;
MtpClient.java 29 import android.mtp.MtpDevice;
30 import android.mtp.MtpDeviceInfo;
31 import android.mtp.MtpObjectInfo;
32 import android.mtp.MtpStorageInfo;
42 * This class helps an application manage a list of connected MTP or PTP devices.
43 * It listens for MTP devices being attached and removed from the USB host bus
44 * and notifies the application when the MTP device list changes.
51 "android.mtp.MtpClient.action.USB_PERMISSION";
109 * An interface for being notified when MTP or PTP devices are attached
165 * Opens the {@link android.hardware.usb.UsbDevice} for an MTP or PT
    [all...]
CameraBrowser.java 23 import android.mtp.MtpDevice;
24 import android.mtp.MtpDeviceInfo;
ObjectViewer.java 26 import android.mtp.MtpConstants;
27 import android.mtp.MtpObjectInfo;
  /frameworks/base/media/jni/
Android.mk 60 frameworks/av/media/mtp \
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/ui/
MtpThumbnailTileView.java 27 import android.mtp.MtpDevice;
33 * View for thumbnail images from an MTP device
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpService.java 27 import android.mtp.MtpDatabase;
28 import android.mtp.MtpServer;
29 import android.mtp.MtpStorage;
77 // lock the same Mutex). If it happens to be in an mtp device
115 /** Flag indicating if MTP is disabled due to keyguard */
190 Log.d(TAG, "starting MTP server in " + (mPtpMode ? "PTP mode" : "MTP mode"));
198 Log.d(TAG, "no longer current user; shutting down MTP server");
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MtpClient.java 30 import android.mtp.MtpDevice;
31 import android.mtp.MtpObjectInfo;
32 import android.mtp.MtpStorageInfo;
42 * This class helps an application manage a list of connected MTP or PTP devices.
43 * It listens for MTP devices being attached and removed from the USB host bus
44 * and notifies the application when the MTP device list changes.
52 "android.mtp.MtpClient.action.USB_PERMISSION";
61 // List of MTP devices we should not try to open for which we are currently
64 // List of MTP devices we should not try to open.
123 * An interface for being notified when MTP or PTP devices are attache
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/os2/
SDL_syscdrom.c 147 MCI_TOC_PARMS mtp; local
174 mtp.pBuf = mtr;
175 mtp.ulBufSize = cdrom->numtracks*sizeof(MCI_TOC_REC);
176 if (LOUSHORT(mciSendCommand(cdrom->id,MCI_GETTOC,MCI_WAIT,&mtp, 0)) != MCIERR_SUCCESS)
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/
IngestService.java 33 import android.mtp.MtpDevice;
34 import android.mtp.MtpDeviceInfo;
49 * Service for MTP importing tasks.
  /device/lge/hammerhead/
device.mk 49 device/lge/hammerhead/Button_Jack.kl:system/usr/keylayout/msm8974-taiko-mtp-snd-card_Button_Jack.kl \
50 device/lge/hammerhead/Button_Jack.kcm:system/usr/keychars/msm8974-taiko-mtp-snd-card_Button_Jack.kcm \
344 persist.sys.usb.config=mtp

Completed in 187 milliseconds

1 2 3