Home
last modified time | relevance | path

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

/freebsd/sys/dev/usb/
H A Dusb_error.c54 static const char* usb_errstr_table[USB_ERR_MAX] = {
94 return (err < USB_ERR_MAX ? usb_errstr_table[err] : "USB_ERR_UNKNOWN"); in usbd_errstr()
H A Dusbdi.h73 USB_ERR_MAX enumerator
/freebsd/usr.sbin/usbdump/
H A Dusbdump.c118 static const char *errstr_table[USB_ERR_MAX] = {
308 if (error >= USB_ERR_MAX || errstr_table[error] == NULL) in usb_errstr()
/freebsd/usr.sbin/bhyve/
H A Dpci_xhci.c307 static const int xhci_usb_errors[USB_ERR_MAX] = {
338 #define USB_TO_XHCI_ERR(e) ((e) < USB_ERR_MAX ? xhci_usb_errors[(e)] : \