Lines Matching defs:actlen
873 int actlen, aframes;
875 usbd_xfer_status(xfer, &actlen, NULL, &aframes, NULL);
882 actlen, aframes);
1089 int actlen;
1093 usbd_xfer_status(xfer, &actlen, NULL, &aframes, NULL);
1098 DPRINTF("received %u bytes in %u frames\n", actlen, aframes);
1171 int off, actlen;
1178 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
1183 usbd_copy_out(pc, 0, buf, MIN(actlen, sizeof buf));
1184 DPRINTF("Received %d bytes: %*D\n", actlen,
1185 (int)MIN(actlen, sizeof buf), buf, "");
1188 while (actlen - off >= UCDC_NOTIFICATION_LENGTH) {
1255 int actlen;
1257 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
1262 DPRINTF("Transferred %d bytes\n", actlen);
1534 int actlen;
1540 usbd_xfer_status(xfer, &actlen, NULL, &aframes, NULL);
1543 "%u bytes in %u frames\n", actlen, aframes);
1593 int actlen;
1603 usbd_xfer_status(xfer, &actlen, &sumlen, &aframes, NULL);
1606 actlen, aframes);
1608 if (actlen < (int)(sizeof(sc->sc_ncm.hdr) +
1635 if ((int)(temp + sizeof(sc->sc_ncm.dpt)) > actlen) {
1666 if ((temp + (4 * nframes)) > actlen)
1689 } else if ((offset + temp) > actlen) {
1720 DPRINTFN(1, "Efficiency: %u/%u bytes\n", sumdata, actlen);