Lines Matching defs:actlen
618 uint32_t actlen;
620 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
627 if (ucom == sc->sc_ucom && actlen >= USIE_HIPCNS_MIN) {
628 DPRINTF("transferred=%u\n", actlen);
634 /* verify actlen */
635 if (actlen > USIE_BUFSIZE)
636 actlen = USIE_BUFSIZE;
639 usbd_copy_out(pc, 0, sc->sc_resp_temp, actlen);
640 usie_hip_rsp(sc, sc->sc_resp_temp, actlen);
648 ucom_put_data(ucom, pc, 0, actlen);
671 uint32_t actlen;
691 if (ucom_get_data(ucom, pc, 0, USIE_BUFSIZE, &actlen)) {
692 usbd_xfer_set_frame_len(xfer, 0, actlen);
714 uint32_t actlen;
717 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
721 DPRINTFN(4, "info received, actlen=%u\n", actlen);
723 if (actlen < sizeof(st)) {
724 DPRINTF("data too short actlen=%u\n", actlen);
772 uint32_t actlen;
781 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
785 DPRINTFN(15, "rx done, actlen=%u\n", actlen);
787 if (actlen < sizeof(struct usie_hip)) {
788 DPRINTF("data too short %u\n", actlen);
841 m->m_pkthdr.len = m->m_len = actlen;
991 uint32_t actlen;
993 usbd_xfer_status(xfer, &actlen, NULL, NULL, NULL);
997 DPRINTFN(4, "info received, actlen=%d\n", actlen);
1000 if (actlen < (sizeof(cdc) - 16)) {
1001 DPRINTF("data too short %d\n", actlen);
1064 uint16_t actlen;
1081 &actlen, USB_DEFAULT_TIMEOUT);
1102 DPRINTF("hip.id=%x hip.len=%d actlen=%u pad=%d\n",
1103 hip->id, be16toh(hip->len), actlen, pad);