Home | History | Annotate | Download | only in usb

Lines Matching refs:UsbEndpoint

32 public class UsbEndpoint implements Parcelable {
40 * UsbEndpoint should only be instantiated by UsbService implementation
43 public UsbEndpoint(int address, int attributes, int maxPacketSize, int interval) {
132 return "UsbEndpoint[mAddress=" + mAddress + ",mAttributes=" + mAttributes +
136 public static final Parcelable.Creator<UsbEndpoint> CREATOR =
137 new Parcelable.Creator<UsbEndpoint>() {
138 public UsbEndpoint createFromParcel(Parcel in) {
143 return new UsbEndpoint(address, attributes, maxPacketSize, interval);
146 public UsbEndpoint[] newArray(int size) {
147 return new UsbEndpoint[size];