Lines Matching defs:actlen
848 uint32_t actlen;
874 if (ucom_get_data(ucom, pc, 0, U3G_TXSIZE, &actlen) == 0)
877 usbd_xfer_set_frame_len(xfer, frame, actlen);
878 writelen = actlen;
901 int actlen;
905 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
910 ucom_put_data(ucom, pc, 0, actlen);
992 int actlen;
999 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
1003 if (actlen < 8) { /* usb_cdc_notification with 2 data bytes */
1004 DPRINTF("message too short (expected 8, received %d)\n", actlen);
1008 usbd_copy_out(pc, 0, &pkt, actlen);
1011 for (i=0; i<actlen; i++) {