Lines Matching defs:rxq
614 sc->rxq.pipe_no = ed->bEndpointAddress;
835 struct run_rx_ring *rxq = &sc->rxq;
838 error = usbd_open_pipe(sc->sc_iface, rxq->pipe_no, 0, &rxq->pipeh);
843 struct run_rx_data *data = &rxq->data[i];
847 error = usbd_create_xfer(sc->rxq.pipeh, RUN_MAX_RXSZ,
862 struct run_rx_ring *rxq = &sc->rxq;
865 if (rxq->pipeh != NULL) {
866 usbd_abort_pipe(rxq->pipeh);
869 if (rxq->data[i].xfer != NULL)
870 usbd_destroy_xfer(rxq->data[i].xfer);
871 rxq->data[i].xfer = NULL;
873 if (rxq->pipeh != NULL) {
874 usbd_close_pipe(rxq->pipeh);
875 rxq->pipeh = NULL;
2450 usbd_clear_endpoint_stall_async(sc->rxq.pipeh);
4935 struct run_rx_data *data = &sc->rxq.data[i];