Lines Matching defs:report_len
391 int report_len = rreq->len + 2;
425 report_len += report_id_len;
426 tmprep = kmem_zalloc(report_len, KM_NOSLEEP);
437 &cmd, cmdlen, tmprep, report_len, flags);
440 if (d != report_len) {
442 device_xname(sc->sc_dev), d, report_len));
454 kmem_free(tmprep, report_len);
459 for (i = 0; i < report_len; i++)
464 kmem_free(tmprep, report_len);
481 int report_len = 2 + (report_id ? 1 : 0) + rreq->len;
520 cmd[dataoff++] = report_len & 0xff;
521 cmd[dataoff++] = report_len >> 8;