Lines Matching refs:urbp
100 static int uhci_show_urbp(struct uhci_hcd *uhci, struct urb_priv *urbp,
109 out += sprintf(out, "urb_priv [%p] ", urbp);
110 out += sprintf(out, "urb [%p] ", urbp->urb);
111 out += sprintf(out, "qh [%p] ", urbp->qh);
112 out += sprintf(out, "Dev=%d ", usb_pipedevice(urbp->urb->pipe));
113 out += sprintf(out, "EP=%x(%s) ", usb_pipeendpoint(urbp->urb->pipe),
114 (usb_pipein(urbp->urb->pipe) ? "IN" : "OUT"));
118 switch (usb_pipetype(urbp->urb->pipe)) {
126 out += sprintf(out, "%s%s", ptype, (urbp->fsbr ? " FSBR" : ""));
127 out += sprintf(out, " Actlen=%d%s", urbp->urb->actual_length,
128 (urbp->qh->type == USB_ENDPOINT_XFER_CONTROL ?
131 if (urbp->urb->unlinked)
132 out += sprintf(out, " Unlinked=%d", urbp->urb->unlinked);
139 list_for_each_entry(td, &urbp->td_list, list) {
140 if (urbp->qh->type != USB_ENDPOINT_XFER_ISOC &&
220 struct urb_priv *urbp = list_entry(qh->queue.next,
222 struct uhci_td *td = list_entry(urbp->td_list.next,
229 list_for_each_entry(urbp, &qh->queue, node) {
231 out += uhci_show_urbp(uhci, urbp, out,