Lines Matching refs:t
160 #define TRB_TYPE(t) (((t).control >> TRB_TYPE_SHIFT) & TRB_TYPE_MASK) argument
193 #define TRB_INTR(t) (((t).status >> TRB_INTR_SHIFT) & TRB_INTR_MASK) argument
1185 static int xhci_ep_nuke_one_xfer(XHCITransfer *t, TRBCCode report) in xhci_ep_nuke_one_xfer() argument
1189 if (report && (t->running_async || t->running_retry)) { in xhci_ep_nuke_one_xfer()
1190 t->status = report; in xhci_ep_nuke_one_xfer()
1191 xhci_xfer_report(t); in xhci_ep_nuke_one_xfer()
1194 if (t->running_async) { in xhci_ep_nuke_one_xfer()
1195 usb_cancel_packet(&t->packet); in xhci_ep_nuke_one_xfer()
1196 t->running_async = 0; in xhci_ep_nuke_one_xfer()
1199 if (t->running_retry) { in xhci_ep_nuke_one_xfer()
1200 if (t->epctx) { in xhci_ep_nuke_one_xfer()
1201 t->epctx->retry = NULL; in xhci_ep_nuke_one_xfer()
1202 timer_del(t->epctx->kick_timer); in xhci_ep_nuke_one_xfer()
1204 t->running_retry = 0; in xhci_ep_nuke_one_xfer()
1207 g_free(t->trbs); in xhci_ep_nuke_one_xfer()
1209 t->trbs = NULL; in xhci_ep_nuke_one_xfer()
1210 t->trb_count = 0; in xhci_ep_nuke_one_xfer()