| /src/sys/dev/usb/ |
| usbdi.c | 711 xfer->ux_actlen = 0; 730 xfer->ux_actlen = 0; 747 xfer->ux_actlen = 0; 769 *count = xfer->ux_actlen; 1119 xfer->ux_actlen); 1141 xfer->ux_actlen = xfer->ux_length; 1171 if (!xfer->ux_status && xfer->ux_actlen < xfer->ux_length && 1174 xfer->ux_actlen, xfer->ux_length, 0, 0); 1184 KDASSERTMSG(xfer->ux_actlen <= xfer->ux_length, 1185 "actlen %d length %d",xfer->ux_actlen, xfer->ux_length) [all...] |
| usbdivar.h | 295 uint32_t ux_actlen; member in struct:usbd_xfer
|
| vhci.c | 815 xfer->ux_actlen = xfer->ux_length; 902 xfer->ux_actlen = xfer->ux_length; 1095 xfer->ux_actlen = xfer->ux_length; 1173 xfer->ux_actlen = ulmin(vxfer->resbuf.size, xfer->ux_length);
|
| motg.c | 1127 xfer->ux_actlen = 1; 1332 // KASSERT(xfer->ux_actlen == 0); 1333 xfer->ux_actlen = 0; 1461 xfer->ux_actlen += datalen; 1623 xfer->ux_actlen += datalen; 1775 // KASSERT(xfer->ux_actlen == 0); 1776 xfer->ux_actlen = 0; 1877 xfer->ux_actlen += datalen; 1982 xfer->ux_actlen += datalen;
|
| usbroothub.c | 571 xfer->ux_actlen = actlen;
|
| ohci.c | 1555 xfer->ux_actlen += len; 1677 xfer->ux_actlen = actlen; 1718 xfer->ux_actlen, 0, 0); 1737 DPRINTFN(10, "xfer=%#jx, actlen=%jd", (uintptr_t)xfer, xfer->ux_actlen, 1789 xfer->ux_actlen = xfer->ux_length; 3719 xfer->ux_actlen = offs; 3809 DPRINTFN(10, "xfer=%#jx, actlen=%jd", (uintptr_t)xfer, xfer->ux_actlen,
|
| uhci.c | 1058 xfer->ux_actlen = 1; 1671 xfer->ux_actlen = actlen; 1715 xfer->ux_actlen = actlen; 3139 xfer->ux_actlen, xfer->ux_state, 0, 0); 3180 DPRINTFN(5, "length=%jd", xfer->ux_actlen, 0, 0, 0); 3227 DPRINTF("length=%jd", xfer->ux_actlen, 0, 0, 0); 3253 DPRINTFN(5, "length=%jd", xfer->ux_actlen, 0, 0, 0);
|
| ehci.c | 877 xfer->ux_actlen = xfer->ux_length; 1201 xfer->ux_actlen = actlen; 1252 xfer->ux_actlen = actlen; 1307 xfer->ux_actlen = actlen; 3878 DPRINTF("length=%jd", xfer->ux_actlen, 0, 0, 0); 4085 DPRINTF("xfer=%#jx, actlen=%jd", (uintptr_t)xfer, xfer->ux_actlen, 0, 0); 4093 DPRINTF("length=%jd", xfer->ux_actlen, 0, 0, 0); 4279 DPRINTF("xfer=%#jx, actlen=%jd", (uintptr_t)xfer, xfer->ux_actlen, 0, 0);
|
| xhci.c | 2405 xfer->ux_actlen = xfer->ux_length; 2502 xfer->ux_actlen = XHCI_TRB_2_REM_GET(trb_2); 2516 * ux_actlen and ux_dmabuf will be passed to 2532 xfer->ux_actlen += xfer->ux_frlengths[xx->xx_isoc_done]; 2534 if (xfer->ux_actlen == 0) 2535 xfer->ux_actlen = xfer->ux_length -
|
| usb.c | 358 xfer->ux_length, xfer->ux_actlen, xfer->ux_flags, xfer->ux_timeout,
|
| /src/sys/external/bsd/dwc2/ |
| dwc2.c | 311 xfer->ux_actlen = xfer->ux_length; 1051 xfer->ux_actlen = 0; 1421 xfer->ux_actlen = dwc2_hcd_urb_get_actual_length(urb); 1423 DPRINTFN(3, "xfer=%p actlen=%d\n", xfer, xfer->ux_actlen); 1426 xfer->ux_actlen = 0; 1433 xfer->ux_actlen += xfer->ux_frlengths[i]; 1435 DPRINTFN(1, "xfer=%p actlen=%d (isoc)\n", xfer, xfer->ux_actlen); 1446 xfer->ux_actlen < xfer->ux_length) 1478 xfer->ux_actlen > 0 /* XXX PR/53503 */ 1482 usb_syncmem(&xfer->ux_dmabuf, 0, xfer->ux_actlen, [all...] |
| /src/sys/rump/dev/lib/libugenhc/ |
| ugenhc.c | 391 xfer->ux_actlen = totlen; 470 xfer->ux_actlen = xfer->ux_length; 501 xfer->ux_actlen = xfer->ux_length; 662 xfer->ux_actlen = done;
|
| /src/sys/dev/ic/ |
| sl811hs.c | 877 xfer->ux_actlen = 0; 2038 xfer->ux_actlen); 2040 " %d xfer->ux_actlen %d\n", SC_NAME(sc), cont, 2041 len, xfer->ux_length, xfer->ux_actlen); 2139 xfer->ux_actlen += actlen; 2143 (xfer->ux_length > xfer->ux_actlen || spipe->wantshort)) { 2145 LK_SLASSERT(xfer->ux_length >= xfer->ux_actlen, sc, 2147 if (xfer->ux_length - xfer->ux_actlen < actlen) { 2151 LK_SLASSERT(xfer->ux_actlen + 2191 LK_SLASSERT(xfer->ux_actlen <= xfer->ux_length, sc [all...] |
| /src/sys/arch/mips/adm5120/dev/ |
| ahci.c | 487 xfer->ux_actlen = 1; 965 xfer->ux_actlen = len; 1286 xfer->ux_actlen = len; 1543 xfer->ux_length, xfer->ux_actlen, xfer->ux_flags, xfer->ux_timeout);
|