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

1 2 3

  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
BusyDeviceException.java 17 package com.android.mtp;
26 super("The MTP device is busy.");
SendObjectInfoFailure.java 17 package com.android.mtp;
UsbIntentReceiver.java 17 package com.android.mtp;
Identifier.java 17 package com.android.mtp;
20 import static com.android.mtp.MtpDatabaseConstants.DocumentType;
MtpDeviceRecord.java 17 package com.android.mtp;
20 import android.mtp.MtpConstants;
MtpRoot.java 17 package com.android.mtp;
19 import android.mtp.MtpStorageInfo;
ReceiverActivity.java 17 package com.android.mtp;
ServiceIntentSender.java 17 package com.android.mtp;
MtpDocumentsService.java 17 package com.android.mtp;
36 * starts to run when the first MTP device is opened, and stops when the last MTP device is closed.
39 static final String ACTION_UPDATE_NOTIFICATION = "com.android.mtp.UPDATE_NOTIFICATION";
88 // not killed by the system while a MTP device is opened.
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
RealDeviceTest.java 17 package com.android.mtp;
TestServiceIntentSender.java 17 package com.android.mtp;
TestResources.java 17 package com.android.mtp;
TestContentResolver.java 17 package com.android.mtp;
TestResultActivity.java 17 package com.android.mtp;
30 * Activity that shows the test results instead of adb while using USB port to connect MTP device.
TestResultInstrumentation.java 17 package com.android.mtp;
41 arguments.putString("notAnnotation", "com.android.mtp.RealDeviceTest");
46 // from adb host while testing with real MTP device.
TestUtil.java 17 package com.android.mtp;
22 import android.mtp.MtpConstants;
46 * Requests permission for a MTP device and returns the first MTP device that has at least one
61 // When the MTP device is Android, and it changes the USB device type from
62 // "Charging" to "MTP", the device ID will be updated. We need to find a device
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/annotations/
UsedByNative.java 17 package com.android.mtp.annotations;
  /frameworks/base/media/java/android/mtp/
MtpPropertyList.java 17 package android.mtp;
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
76 * This can be set to a non-zero value to prevent MTP from filling up the entire storage.
MtpStorageInfo.java 17 package android.mtp;
22 * This class encapsulates information about a storage unit on an MTP device.
24 * section 5.2.2 of the MTP specification.
40 * The storage ID uniquely identifies the storage unit on the MTP device.
69 * MTP host.
MtpDeviceInfo.java 17 package android.mtp;
22 * This class encapsulates information about an MTP device.
24 * section 5.1.1 of the MTP specification.
40 * Returns the manufacturer's name for the MTP device
49 * Returns the model name for the MTP device
58 * Returns the version string the MTP device
67 * Returns the unique serial number for the MTP device
MtpEvent.java 17 package android.mtp;
20 * This class encapsulates information about a MTP event.
21 * This corresponds to the events described in appendix G of the MTP specification.
74 * Returns event code of MTP event.
75 * See the USB-IF MTP specification for the details of event constants.
MtpServer.java 17 package android.mtp;
22 * Java wrapper for MTP/PTP support as USB responder.
  /frameworks/base/packages/MtpDocumentsProvider/perf_tests/src/com/android/mtp/
AppFusePerfTest.java 17 package com.android.mtp;
  /external/syslinux/mtools/
syslinux.c 195 FILE *mtc, *mtp; local
304 mtp = popen("mcopy -D o -D O -o - s:/ldlinux.sys", "w");
305 if (!mtp ||
307 1, syslinux_ldlinux_len, mtp)
310 1, 2 * ADV_SIZE, mtp)
312 (status = pclose(mtp), !WIFEXITED(status) || WEXITSTATUS(status))) {
363 mtp = popen("mcopy -D o -D O -o - s:/ldlinux.c32", "w");
364 if (!mtp || fwrite((const char _force *)syslinux_ldlinuxc32,
365 1, syslinux_ldlinuxc32_len, mtp)
367 (status = pclose(mtp), !WIFEXITED(status) || WEXITSTATUS(status)))
    [all...]

Completed in 529 milliseconds

1 2 3