Lines Matching defs:report_len
392 int report_len = rreq->len + 2;
426 report_len += report_id_len;
427 tmprep = kmem_zalloc(report_len, KM_NOSLEEP);
438 &cmd, cmdlen, tmprep, report_len, flags);
441 if (d != report_len) {
443 device_xname(sc->sc_dev), d, report_len));
455 kmem_free(tmprep, report_len);
460 for (i = 0; i < report_len; i++)
465 kmem_free(tmprep, report_len);
482 int report_len = 2 + (report_id ? 1 : 0) + rreq->len;
521 cmd[dataoff++] = report_len & 0xff;
522 cmd[dataoff++] = report_len >> 8;