Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/dev/usb/net/
Duhso.c557 usb_error_t uerr; in uhso_attach() local
574 uerr = usbd_transfer_setup(uaa->device, in uhso_attach()
577 if (uerr) { in uhso_attach()
579 usbd_errstr(uerr)); in uhso_attach()
779 usb_error_t uerr; in uhso_probe_iface_auto() local
790 uerr = usbd_do_request_flags(udev, NULL, &req, buf, in uhso_probe_iface_auto()
792 if (uerr != 0) { in uhso_probe_iface_auto()
794 __func__, usbd_errstr(uerr)); in uhso_probe_iface_auto()
967 usb_error_t uerr; in uhso_radio_ctrl() local
975 uerr = usbd_do_request(sc->sc_udev, NULL, &req, NULL); in uhso_radio_ctrl()
[all …]
/freebsd-12-stable/lib/libc/string/
Dstrerror.c66 unsigned int uerr; in errstr() local
71 uerr = (num >= 0) ? num : -num; in errstr()
73 *--t = "0123456789"[uerr % 10]; in errstr()
74 } while (uerr /= 10); in errstr()