Home
last modified time | relevance | path

Searched refs:descriptorType (Results 1 – 1 of 1) sorted by relevance

/aosp14/frameworks/base/services/usb/java/com/android/server/usb/descriptors/
H A DUsbDescriptor.java284 static String getDescriptorName(byte descriptorType, int descriptorLength) { in getDescriptorName() argument
285 String name = UsbStrings.getDescriptorName(descriptorType); in getDescriptorName()
289 return "Unknown Descriptor Type " + descriptorType in getDescriptorName()
290 + " 0x" + Integer.toHexString(descriptorType) in getDescriptorName()
295 static void logDescriptorName(byte descriptorType, int descriptorLength) { in logDescriptorName() argument
297 Log.d(TAG, "----> " + getDescriptorName(descriptorType, descriptorLength)); in logDescriptorName()