HomeSort by: relevance | last modified time | path
    Searched defs:report_in_len (Results 1 - 8 of 8) sorted by relevancy

  /src/external/bsd/libfido2/dist/src/
hid_hidapi.c 23 size_t report_in_len; member in struct:hid_hidapi
178 ctx->report_in_len = ctx->report_out_len = CTAP_MAX_REPORT_LEN;
206 if (len != ctx->report_in_len) {
260 return (ctx->report_in_len);
hid_openbsd.c 25 size_t report_in_len; member in struct:hid_openbsd
172 ret->report_in_len = ret->report_out_len = CTAP_MAX_REPORT_LEN;
174 ret->report_in_len, ret->report_out_len);
217 if (len != ctx->report_in_len) {
219 len, ctx->report_in_len);
271 return (ctx->report_in_len);
hid_freebsd.c 32 size_t report_in_len; member in struct:hid_freebsd
237 &ctx->report_in_len, &ctx->report_out_len) < 0) {
241 ctx->report_in_len = CTAP_MAX_REPORT_LEN;
276 if (len != ctx->report_in_len) {
328 return (ctx->report_in_len);
hid_netbsd.c 29 size_t report_in_len; member in struct:hid_netbsd
229 &ctx->report_in_len, &ctx->report_out_len) < 0) {
233 ctx->report_in_len = CTAP_MAX_REPORT_LEN;
278 if (len != ctx->report_in_len) {
330 return (ctx->report_in_len);
hid_linux.c 24 size_t report_in_len; member in struct:hid_linux
305 fido_hid_get_report_len(hrd->value, hrd->size, &ctx->report_in_len,
306 &ctx->report_out_len) < 0 || ctx->report_in_len == 0 ||
309 ctx->report_in_len = CTAP_MAX_REPORT_LEN;
346 if (len != ctx->report_in_len) {
398 return (ctx->report_in_len);
hid_osx.c 33 size_t report_in_len; member in struct:hid_osx
321 id != 0 || len < 0 || (size_t)len != ctx->report_in_len) {
439 if (get_report_len(ctx->ref, 0, &ctx->report_in_len) < 0 ||
445 if (ctx->report_in_len > sizeof(ctx->report)) {
446 fido_log_debug("%s: report_in_len=%zu", __func__,
447 ctx->report_in_len);
470 (long)ctx->report_in_len, &report_callback, ctx);
500 (long)ctx->report_in_len, NULL, ctx);
550 if (len != ctx->report_in_len || len > sizeof(ctx->report)) {
602 return (ctx->report_in_len);
    [all...]
hid_win.c 40 size_t report_in_len; member in struct:hid_win
438 if (get_report_len(ctx->dev, 0, &ctx->report_in_len) < 0 ||
483 if (len != ctx->report_in_len - 1 || len > sizeof(ctx->report) - 1) {
562 return (ctx->report_in_len - 1);
  /src/external/bsd/libfido2/dist/fuzz/
fuzz_hid.c 166 size_t report_in_len = 0; local
170 p->report_descriptor.len, &report_in_len, &report_out_len);
171 consume(&report_in_len, sizeof(report_in_len));

Completed in 21 milliseconds