Home
last modified time | relevance | path

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

/netbsd/sys/dev/usb/
H A Dusbdi.c609 callout_init(&xfer->ux_callout, CALLOUT_MPSAFE); in usbd_alloc_xfer()
610 callout_setfunc(&xfer->ux_callout, usbd_xfer_timeout, xfer); in usbd_alloc_xfer()
634 callout_halt(&xfer->ux_callout, xfer->ux_bus->ub_lock); in usbd_free_xfer()
1629 callout_ack(&xfer->ux_callout); in usbd_xfer_timeout()
1734 KASSERT(!callout_pending(&xfer->ux_callout)); in usbd_xfer_probe_timeout()
1758 callout_schedule(&xfer->ux_callout, in usbd_xfer_probe_timeout()
1852 KASSERT(!callout_pending(&xfer->ux_callout)); in usbd_xfer_schedule_timeout()
1853 callout_schedule(&xfer->ux_callout, mstohz(xfer->ux_timeout)); in usbd_xfer_schedule_timeout()
1901 if (!callout_stop(&xfer->ux_callout)) { in usbd_xfer_cancel_timeout_async()
1909 } else if (callout_invoking(&xfer->ux_callout)) { in usbd_xfer_cancel_timeout_async()
[all …]
H A Dusbdivar.h310 struct callout ux_callout; member
H A Dvhci.c652 callout_halt(&xfer->ux_callout, &sc->sc_lock); in vhci_device_ctrl_abort()