Home
last modified time | relevance | path

Searched refs:CTAP_MAX_REPORT_LEN (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/libfido2/src/
H A Ddev.c21 uniform_random(CTAP_MAX_REPORT_LEN - CTAP_MIN_REPORT_LEN + 1); in set_random_report_len()
23 uniform_random(CTAP_MAX_REPORT_LEN - CTAP_MIN_REPORT_LEN + 1); in set_random_report_len()
122 dev->rx_len = CTAP_MAX_REPORT_LEN; in fido_dev_open_tx()
123 dev->tx_len = CTAP_MAX_REPORT_LEN; in fido_dev_open_tx()
134 dev->rx_len > CTAP_MAX_REPORT_LEN) { in fido_dev_open_tx()
141 dev->tx_len > CTAP_MAX_REPORT_LEN) { in fido_dev_open_tx()
H A Dhid_netbsd.c233 ctx->report_in_len = CTAP_MAX_REPORT_LEN; in fido_hid_open()
234 ctx->report_out_len = CTAP_MAX_REPORT_LEN; in fido_hid_open()
H A Dhid_freebsd.c241 ctx->report_in_len = CTAP_MAX_REPORT_LEN; in fido_hid_open()
242 ctx->report_out_len = CTAP_MAX_REPORT_LEN; in fido_hid_open()
H A Dhid_linux.c293 ctx->report_in_len = CTAP_MAX_REPORT_LEN; in fido_hid_open()
294 ctx->report_out_len = CTAP_MAX_REPORT_LEN; in fido_hid_open()
H A Dio.c20 uint8_t data[CTAP_MAX_REPORT_LEN - CTAP_INIT_HEADER_LEN]; in PACKED_TYPE()
24 uint8_t data[CTAP_MAX_REPORT_LEN - CTAP_CONT_HEADER_LEN]; in PACKED_TYPE()
H A Dhid_osx.c35 unsigned char report[CTAP_MAX_REPORT_LEN];
101 if ((*report_len = (size_t)v) > CTAP_MAX_REPORT_LEN) { in get_report_len()
H A Dhid_hidapi.c178 ctx->report_in_len = ctx->report_out_len = CTAP_MAX_REPORT_LEN; in fido_hid_open()
H A Dhid_openbsd.c172 ret->report_in_len = ret->report_out_len = CTAP_MAX_REPORT_LEN; in fido_hid_open()
H A Dhid_win.c42 unsigned char report[1 + CTAP_MAX_REPORT_LEN];
/freebsd/contrib/libfido2/fuzz/
H A Dmutator_aux.c218 assert(len >= CTAP_MIN_REPORT_LEN && len <= CTAP_MAX_REPORT_LEN); in hid_read()
228 len <= CTAP_MAX_REPORT_LEN + 1); in hid_write()
/freebsd/contrib/libfido2/src/fido/
H A Dparam.h86 #define CTAP_MAX_REPORT_LEN 64 macro