/src/sys/external/bsd/dwc2/ |
dwc2var.h | 99 pool_cache_t sc_xferpool; member in struct:dwc2_softc
|
dwc2.c | 239 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,
|
/src/sys/dev/usb/ |
motgvar.h | 92 pool_cache_t sc_xferpool; member in struct:motg_softc
|
uhcivar.h | 171 pool_cache_t sc_xferpool; /* free xfer pool */ member in struct:uhci_softc
|
ohcivar.h | 130 pool_cache_t sc_xferpool; /* free xfer pool */ member in struct:ohci_softc
|
xhcivar.h | 103 pool_cache_t sc_xferpool; member in struct:xhci_softc
|
ehcivar.h | 221 pool_cache_t sc_xferpool; /* free xfer pool */ member in struct:ehci_softc
|
xhci.c | 688 pool_cache_destroy(sc->sc_xferpool); 1662 sc->sc_xferpool = pool_cache_init(sizeof(struct xhci_xfer), 0, 0, 0, 1664 if (sc->sc_xferpool == NULL) { 1703 if (sc->sc_xferpool) { 1704 pool_cache_destroy(sc->sc_xferpool); 1705 sc->sc_xferpool = NULL; 2784 xx = pool_cache_get(sc->sc_xferpool, PR_WAITOK); 2820 pool_cache_put(sc->sc_xferpool, xx);
|
motg.c | 462 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);
|
ohci.c | 390 pool_cache_destroy(sc->sc_xferpool); 834 sc->sc_xferpool = pool_cache_init(sizeof(struct ohci_xfer), 0, 0, 0, 1115 xfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK); 1137 pool_cache_put(sc->sc_xferpool, xfer);
|
uhci.c | 574 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);
|
ehci.c | 425 sc->sc_xferpool = pool_cache_init(sizeof(struct ehci_xfer), 0, 0, 0, 1441 pool_cache_destroy(sc->sc_xferpool); 1600 xfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK); 1628 pool_cache_put(sc->sc_xferpool, xfer);
|