Searched defs:UsbInterface (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/hardware/usb/
H A DUsbInterface.java36 public class UsbInterface implements Parcelable { class in inherits:Parcelable
45 * UsbInterface should only be instantiated by UsbService implementation
48 public UsbInterface(int id, int Class, int subClass, int protocol, method in class:UsbInterface
115 return "UsbInterface[mId=" + mId + ",mClass=" + mClass +
120 public static final Parcelable.Creator<UsbInterface> CREATOR =
121 new Parcelable.Creator<UsbInterface>() {
122 public UsbInterface createFromParcel(Parcel in) {
128 return new UsbInterface(id, Class, subClass, protocol, endpoints);
131 public UsbInterface[] newArray(int size) {
132 return new UsbInterface[siz
[all...]

Completed in 58 milliseconds