Home | History | Annotate | Download | only in report

Lines Matching refs:UsbDescriptor

20 import com.android.server.usb.descriptors.UsbDescriptor;
47 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_DEVICE, "Device");
48 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_CONFIG, "Config");
49 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_STRING, "String");
50 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_INTERFACE, "Interface");
51 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_ENDPOINT, "Endpoint");
52 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_BOS, "BOS (whatever that means)");
53 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_INTERFACEASSOC,
55 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_CAPABILITY, "Capability");
56 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_HID, "HID");
57 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_REPORT, "Report");
58 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_PHYSICAL, "Physical");
59 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_AUDIO_INTERFACE,
61 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_AUDIO_ENDPOINT, "Audio Class Endpoint");
62 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_HUB, "Hub");
63 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_SUPERSPEED_HUB, "Superspeed Hub");
64 sDescriptorNames.put(UsbDescriptor.DESCRIPTORTYPE_ENDPOINT_COMPANION,
96 sClassNames.put(UsbDescriptor.CLASSID_DEVICE, "Device");
97 sClassNames.put(UsbDescriptor.CLASSID_AUDIO, "Audio");
98 sClassNames.put(UsbDescriptor.CLASSID_COM, "Communications");
99 sClassNames.put(UsbDescriptor.CLASSID_HID, "HID");
100 sClassNames.put(UsbDescriptor.CLASSID_PHYSICAL, "Physical");
101 sClassNames.put(UsbDescriptor.CLASSID_IMAGE, "Image");
102 sClassNames.put(UsbDescriptor.CLASSID_PRINTER, "Printer");
103 sClassNames.put(UsbDescriptor.CLASSID_STORAGE, "Storage");
104 sClassNames.put(UsbDescriptor.CLASSID_HUB, "Hub");
105 sClassNames.put(UsbDescriptor.CLASSID_CDC_CONTROL, "CDC Control");
106 sClassNames.put(UsbDescriptor.CLASSID_SMART_CARD, "Smart Card");
107 sClassNames.put(UsbDescriptor.CLASSID_SECURITY, "Security");
108 sClassNames.put(UsbDescriptor.CLASSID_VIDEO, "Video");
109 sClassNames.put(UsbDescriptor.CLASSID_HEALTHCARE, "Healthcare");
110 sClassNames.put(UsbDescriptor.CLASSID_AUDIOVIDEO, "Audio/Video");
111 sClassNames.put(UsbDescriptor.CLASSID_BILLBOARD, "Billboard");
112 sClassNames.put(UsbDescriptor.CLASSID_TYPECBRIDGE, "Type C Bridge");
113 sClassNames.put(UsbDescriptor.CLASSID_DIAGNOSTIC, "Diagnostic");
114 sClassNames.put(UsbDescriptor.CLASSID_WIRELESS, "Wireless");
115 sClassNames.put(UsbDescriptor.CLASSID_MISC, "Misc");
116 sClassNames.put(UsbDescriptor.CLASSID_APPSPECIFIC, "Application Specific");
117 sClassNames.put(UsbDescriptor.CLASSID_VENDSPECIFIC, "Vendor Specific");
122 sAudioSubclassNames.put(UsbDescriptor.AUDIO_SUBCLASS_UNDEFINED, "Undefinded");
123 sAudioSubclassNames.put(UsbDescriptor.AUDIO_AUDIOCONTROL, "Audio Control");
124 sAudioSubclassNames.put(UsbDescriptor.AUDIO_AUDIOSTREAMING, "Audio Streaming");
125 sAudioSubclassNames.put(UsbDescriptor.AUDIO_MIDISTREAMING, "MIDI Streaming");
339 return subClassID == UsbDescriptor.AUDIO_AUDIOCONTROL ? "AC Control" : "AC Streaming";