Lines Matching refs:type

84     public UsbACInterface(int length, byte type, byte subtype, int subclass) {
85 super(length, type);
99 ByteStream stream, int length, byte type, byte subtype, int subClass) {
106 return new Usb20ACHeader(length, type, subtype, subClass, acInterfaceSpec);
108 return new Usb10ACHeader(length, type, subtype, subClass, acInterfaceSpec);
116 return new Usb20ACInputTerminal(length, type, subtype, subClass);
118 return new Usb10ACInputTerminal(length, type, subtype, subClass);
126 return new Usb20ACOutputTerminal(length, type, subtype, subClass);
128 return new Usb10ACOutputTerminal(length, type, subtype, subClass);
133 return new UsbACSelectorUnit(length, type, subtype, subClass);
136 return new UsbACFeatureUnit(length, type, subtype, subClass);
142 return new Usb20ACMixerUnit(length, type, subtype, subClass);
144 return new Usb10ACMixerUnit(length, type, subtype, subClass);
155 return new UsbACInterfaceUnparsed(length, type, subtype, subClass);
160 ByteStream stream, int length, byte type, byte subtype, int subClass) {
166 return new Usb20ASGeneral(length, type, subtype, subClass);
168 return new Usb10ASGeneral(length, type, subtype, subClass);
172 return UsbASFormat.allocDescriptor(parser, stream, length, type, subtype, subClass);
184 private static UsbDescriptor allocMidiStreamingDescriptor(int length, byte type,
188 return new UsbMSMidiHeader(length, type, subtype, subClass);
191 return new UsbMSMidiInputJack(length, type, subtype, subClass);
194 return new UsbMSMidiOutputJack(length, type, subtype, subClass);
212 int length, byte type) {
219 parser, stream, length, type, subtype, subClass);
223 parser, stream, length, type, subtype, subClass);
226 return allocMidiStreamingDescriptor(length, type, subtype, subClass);