Home | History | Annotate | Download | only in usb

Lines Matching defs:hp_wlen

315 	size_t			hp_wlen;	/* fill length */
923 hp->hp_wlen);
929 USETW(req.wLength, hp->hp_wlen);
932 &req, hp->hp_wbuf, hp->hp_wlen, 0, hp->hp_write_cb);
1237 DPRINTF(5, "hp=%p, wlen=%zd\n", hp, hp->hp_wlen);
1239 usbd_setup_xfer(hp->hp_wxfer, hp, hp->hp_wbuf, hp->hp_wlen, 0,
1418 DPRINTF(5, "wrote %d bytes (of %zd)\n", cc, hp->hp_wlen);
1419 if (cc != hp->hp_wlen)
1420 DPRINTF(0, "cc=%u, wlen=%zd\n", cc, hp->hp_wlen);
1859 hp->hp_wlen = q_to_b(&tp->t_outq, hp->hp_wbuf, hp->hp_wsize);
1860 if (hp->hp_wlen > 0) {
2031 DPRINTF(5, "wrote %d bytes (of %zd)\n", cc, hp->hp_wlen);
2033 if (cc != hp->hp_wlen)
2034 DPRINTF(0, "cc=%u, wlen=%zd\n", cc, hp->hp_wlen);
2327 hp->hp_wlen = m->m_pkthdr.len;
2328 if (hp->hp_wlen > hp->hp_wsize) {
2331 hp->hp_wlen, hp->hp_wsize);
2333 hp->hp_wlen = hp->hp_wsize;
2338 m_copydata(m, 0, hp->hp_wlen, hp->hp_wbuf);