Home
last modified time | relevance | path

Searched refs:subclass (Results 1 – 25 of 39) sorted by relevance

12

/aosp14/frameworks/base/services/usb/java/com/android/server/usb/descriptors/
H A DUsbASFormat.java70 byte subtype, int subclass) { in allocDescriptor() argument
78 return new Usb20ASFormatI(length, type, subtype, formatType, subclass); in allocDescriptor()
80 return new Usb10ASFormatI(length, type, subtype, formatType, subclass); in allocDescriptor()
85 return new Usb20ASFormatII(length, type, subtype, formatType, subclass); in allocDescriptor()
87 return new Usb10ASFormatII(length, type, subtype, formatType, subclass); in allocDescriptor()
92 return new Usb20ASFormatIII(length, type, subtype, formatType, subclass); in allocDescriptor()
97 return new UsbASFormat(length, type, subtype, formatType, subclass); in allocDescriptor()
H A DUsbACAudioStreamEndpoint.java27 public UsbACAudioStreamEndpoint(int length, byte type, int subclass, byte subtype) { in UsbACAudioStreamEndpoint() argument
28 super(length, type, subclass, subtype); in UsbACAudioStreamEndpoint()
H A DUsbMSMidiInputJack.java28 UsbMSMidiInputJack(int length, byte type, byte subtype, int subclass) { in UsbMSMidiInputJack() argument
29 super(length, type, subtype, subclass); in UsbMSMidiInputJack()
H A DUsbMSMidiOutputJack.java28 public UsbMSMidiOutputJack(int length, byte type, byte subtype, int subclass) { in UsbMSMidiOutputJack() argument
29 super(length, type, subtype, subclass); in UsbMSMidiOutputJack()
H A DUsbACAudioControlEndpoint.java41 public UsbACAudioControlEndpoint(int length, byte type, int subclass, byte subtype) { in UsbACAudioControlEndpoint() argument
42 super(length, type, subclass, subtype); in UsbACAudioControlEndpoint()
H A DUsbACHeaderInterface.java34 int length, byte type, byte subtype, int subclass, int adcRelease) { in UsbACHeaderInterface() argument
35 super(length, type, subtype, subclass); in UsbACHeaderInterface()
H A DUsbMSMidiHeader.java30 public UsbMSMidiHeader(int length, byte type, byte subtype, int subclass) { in UsbMSMidiHeader() argument
31 super(length, type, subtype, subclass); in UsbMSMidiHeader()
H A DUsb20ASFormatI.java34 public Usb20ASFormatI(int length, byte type, byte subtype, byte formatType, int subclass) { in Usb20ASFormatI() argument
35 super(length, type, subtype, formatType, subclass); in Usb20ASFormatI()
H A DUsb20ASFormatII.java37 public Usb20ASFormatII(int length, byte type, byte subtype, byte formatType, int subclass) { in Usb20ASFormatII() argument
38 super(length, type, subtype, formatType, subclass); in Usb20ASFormatII()
H A DUsb20ASFormatIII.java34 public Usb20ASFormatIII(int length, byte type, byte subtype, byte formatType, int subclass) { in Usb20ASFormatIII() argument
35 super(length, type, subtype, formatType, subclass); in Usb20ASFormatIII()
H A DUsb20ACHeader.java32 public Usb20ACHeader(int length, byte type, byte subtype, int subclass, int spec) { in Usb20ACHeader() argument
33 super(length, type, subtype, subclass, spec); in Usb20ACHeader()
H A DUsb10ASGeneral.java37 public Usb10ASGeneral(int length, byte type, byte subtype, int subclass) { in Usb10ASGeneral() argument
38 super(length, type, subtype, subclass); in Usb10ASGeneral()
H A DUsb10ACInputTerminal.java35 public Usb10ACInputTerminal(int length, byte type, byte subtype, int subclass) { in Usb10ACInputTerminal() argument
36 super(length, type, subtype, subclass); in Usb10ACInputTerminal()
H A DUsb20ASFormatIIEx.java37 public Usb20ASFormatIIEx(int length, byte type, byte subtype, byte formatType, byte subclass) { in Usb20ASFormatIIEx() argument
38 super(length, type, subtype, formatType, subclass); in Usb20ASFormatIIEx()
H A DUsbACMidi10Endpoint.java31 public UsbACMidi10Endpoint(int length, byte type, int subclass, byte subtype) { in UsbACMidi10Endpoint() argument
32 super(length, type, subclass, subtype); in UsbACMidi10Endpoint()
H A DUsbACMidi20Endpoint.java31 public UsbACMidi20Endpoint(int length, byte type, int subclass, byte subtype) { in UsbACMidi20Endpoint() argument
32 super(length, type, subclass, subtype); in UsbACMidi20Endpoint()
H A DUsbACTerminal.java35 public UsbACTerminal(int length, byte type, byte subtype, int subclass) { in UsbACTerminal() argument
36 super(length, type, subtype, subclass); in UsbACTerminal()
H A DUsb20ACInputTerminal.java42 public Usb20ACInputTerminal(int length, byte type, byte subtype, int subclass) { in Usb20ACInputTerminal() argument
43 super(length, type, subtype, subclass); in Usb20ACInputTerminal()
H A DUsb10ACHeader.java35 public Usb10ACHeader(int length, byte type, byte subtype, int subclass, int spec) { in Usb10ACHeader() argument
36 super(length, type, subtype, subclass, spec); in Usb10ACHeader()
H A DUsb10ASFormatII.java41 public Usb10ASFormatII(int length, byte type, byte subtype, byte formatType, int subclass) { in Usb10ASFormatII() argument
42 super(length, type, subtype, formatType, subclass); in Usb10ASFormatII()
H A DUsbACEndpoint.java35 UsbACEndpoint(int length, byte type, int subclass, byte subtype) { in UsbACEndpoint() argument
37 mSubclass = subclass; in UsbACEndpoint()
H A DUsb20ASGeneral.java44 public Usb20ASGeneral(int length, byte type, byte subtype, int subclass) { in Usb20ASGeneral() argument
45 super(length, type, subtype, subclass); in Usb20ASGeneral()
H A DUsb10ASFormatI.java36 public Usb10ASFormatI(int length, byte type, byte subtype, byte formatType, int subclass) { in Usb10ASFormatI() argument
37 super(length, type, subtype, formatType, subclass); in Usb10ASFormatI()
/aosp14/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/subclass/
H A DSubclassTest.java17 package android.test.suitebuilder.examples.subclass;
H A DSuperclassTest.java17 package android.test.suitebuilder.examples.subclass;

12