Lines Matching defs:actlen

778 	uint16_t actlen = 0;
789 0, &actlen, USB_MS_HZ);
796 UHSO_DPRINTF(1, "actlen=%d\n", actlen);
1153 int actlen, len;
1155 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
1212 int actlen;
1215 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
1224 actlen - sizeof(struct usb_device_request) ,
1231 0, 32, &actlen)) {
1240 USETW(req.wLength, actlen);
1246 usbd_xfer_set_frame_len(xfer, 1, actlen);
1250 "on muxport %d\n", actlen, ht->ht_muxport);
1301 int actlen;
1303 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
1305 UHSO_DPRINTF(3, "status %d, actlen=%d\n", USB_GET_STATE(xfer), actlen);
1310 ucom_put_data(&sc->sc_ucom[0], pc, 0, actlen);
1331 int actlen;
1333 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
1335 UHSO_DPRINTF(3, "status %d, actlen=%d\n", USB_GET_STATE(xfer), actlen);
1342 if (ucom_get_data(&sc->sc_ucom[0], pc, 0, 8192, &actlen)) {
1343 usbd_xfer_set_frame_len(xfer, 0, actlen);
1384 int actlen;
1387 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
1388 UHSO_DPRINTF(3, "status %d, actlen=%d\n", USB_GET_STATE(xfer), actlen);
1392 if (actlen < UCDC_NOTIFICATION_LENGTH) {
1393 UHSO_DPRINTF(0, "UCDC notification too short: %d\n", actlen);
1396 else if (actlen > (int)sizeof(struct usb_cdc_notification)) {
1397 UHSO_DPRINTF(0, "UCDC notification too large: %d\n", actlen);
1398 actlen = sizeof(struct usb_cdc_notification);
1402 usbd_copy_out(pc, 0, &cdc, actlen);
1617 int actlen;
1619 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
1621 UHSO_DPRINTF(3, "status=%d, actlen=%d\n", USB_GET_STATE(xfer), actlen);
1625 if (actlen > 0 && (sc->sc_ifp->if_drv_flags & IFF_DRV_RUNNING)) {
1628 usbd_copy_out(pc, 0, mtod(m, uint8_t *), actlen);
1629 m->m_pkthdr.len = m->m_len = actlen;
1796 int actlen;
1798 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
1800 UHSO_DPRINTF(3, "status %d, actlen=%d\n", USB_GET_STATE(xfer), actlen);