Searched refs:sc_xferpool (Results 1 - 12 of 12) sorted by relevance

/netbsd-current/sys/external/bsd/dwc2/
H A Ddwc2var.h99 pool_cache_t sc_xferpool; member in struct:dwc2_softc
H A Ddwc2.c239 dxfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK);
268 pool_cache_put(sc->sc_xferpool, xfer);
1264 sc->sc_xferpool = pool_cache_init(sizeof(struct dwc2_xfer), 0, 0, 0,
/netbsd-current/sys/dev/usb/
H A Dmotgvar.h92 pool_cache_t sc_xferpool; member in struct:motg_softc
H A Duhcivar.h171 pool_cache_t sc_xferpool; /* free xfer pool */ member in struct:uhci_softc
H A Dohcivar.h131 pool_cache_t sc_xferpool; /* free xfer pool */ member in struct:ohci_softc
H A Dxhcivar.h103 pool_cache_t sc_xferpool; member in struct:xhci_softc
H A Dehcivar.h228 pool_cache_t sc_xferpool; /* free xfer pool */ member in struct:ehci_softc
H A Dxhci.c666 pool_cache_destroy(sc->sc_xferpool);
1629 sc->sc_xferpool = pool_cache_init(sizeof(struct xhci_xfer), 0, 0, 0,
1631 if (sc->sc_xferpool == NULL) {
1670 if (sc->sc_xferpool) {
1671 pool_cache_destroy(sc->sc_xferpool);
1672 sc->sc_xferpool = NULL;
2736 xx = pool_cache_get(sc->sc_xferpool, PR_WAITOK);
2772 pool_cache_put(sc->sc_xferpool, xx);
H A Dmotg.c462 sc->sc_xferpool = pool_cache_init(sizeof(struct motg_xfer), 0, 0, 0,
751 xfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK);
774 pool_cache_put(sc->sc_xferpool, xfer);
H A Duhci.c574 sc->sc_xferpool = pool_cache_init(sizeof(struct uhci_xfer), 0, 0, 0,
648 pool_cache_destroy(sc->sc_xferpool);
661 xfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK);
688 pool_cache_put(sc->sc_xferpool, xfer);
H A Dohci.c392 pool_cache_destroy(sc->sc_xferpool);
810 sc->sc_xferpool = pool_cache_init(sizeof(struct ohci_xfer), 0, 0, 0,
1090 xfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK);
1112 pool_cache_put(sc->sc_xferpool, xfer);
H A Dehci.c426 sc->sc_xferpool = pool_cache_init(sizeof(struct ehci_xfer), 0, 0, 0,
1427 pool_cache_destroy(sc->sc_xferpool);
1586 xfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK);
1614 pool_cache_put(sc->sc_xferpool, xfer);

Completed in 317 milliseconds