Home | History | Annotate | Download | only in descriptors

Lines Matching defs:subClass

84     public UsbACInterface(int length, byte type, byte subtype, int subclass) {
87 mSubclass = subclass;
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);
185 byte subtype, int subClass) {
188 return new UsbMSMidiHeader(length, type, subtype, subClass);
191 return new UsbMSMidiInputJack(length, type, subtype, subClass);
194 return new UsbMSMidiOutputJack(length, type, subtype, subClass);
209 * Allocates an audio class interface subtype based on subtype and subclass.
215 int subClass = interfaceDesc.getUsbSubclass();
216 switch (subClass) {
219 parser, stream, length, type, subtype, subClass);
223 parser, stream, length, type, subtype, subClass);
226 return allocMidiStreamingDescriptor(length, type, subtype, subClass);
229 Log.w(TAG, "Unknown Audio Class Interface Subclass: 0x"
230 + Integer.toHexString(subClass));
239 int subClass = getSubclass();
240 String subClassName = UsbStrings.getACInterfaceSubclassName(subClass);
246 canvas.writeListItem("Subclass: " + ReportCanvas.getHexString(subClass)