Home
last modified time | relevance | path

Searched refs:total_ranges (Results 1 – 6 of 6) sorted by relevance

/openssl/ssl/quic/
H A Dquic_trace.c80 uint64_t total_ranges = 0; in frame_ack() local
84 if (!ossl_quic_wire_peek_frame_ack_num_ranges(pkt, &total_ranges) in frame_ack()
86 || total_ranges > SIZE_MAX / sizeof(ack_ranges[0]) in frame_ack()
88 * (size_t)total_ranges)) == NULL) in frame_ack()
92 ack.num_ack_ranges = (size_t)total_ranges; in frame_ack()
103 (unsigned long long)total_ranges - 1); in frame_ack()
107 for (i = 1; i < total_ranges; i++) { in frame_ack()
H A Dquic_rx_depack.c68 uint64_t total_ranges = 0; in depack_do_frame_ack() local
71 if (!ossl_quic_wire_peek_frame_ack_num_ranges(pkt, &total_ranges) in depack_do_frame_ack()
73 || total_ranges > SIZE_MAX / sizeof(OSSL_QUIC_ACK_RANGE)) in depack_do_frame_ack()
76 if (ch->num_ack_range_scratch < (size_t)total_ranges) { in depack_do_frame_ack()
79 * (size_t)total_ranges)) == NULL) in depack_do_frame_ack()
83 ch->num_ack_range_scratch = (size_t)total_ranges; in depack_do_frame_ack()
87 ack.num_ack_ranges = (size_t)total_ranges; in depack_do_frame_ack()
H A Dquic_wire.c488 uint64_t *total_ranges) in ossl_quic_wire_peek_frame_ack_num_ranges() argument
513 *total_ranges = ack_range_count + 1; in ossl_quic_wire_peek_frame_ack_num_ranges()
520 uint64_t *total_ranges) { in ossl_quic_wire_decode_frame_ack() argument
577 if (total_ranges != NULL) in ossl_quic_wire_decode_frame_ack()
578 *total_ranges = ack_range_count + 1; in ossl_quic_wire_decode_frame_ack()
H A Dqlog_event_helpers.c212 uint64_t num_ranges, total_ranges; in log_frame_actual() local
243 if (!ossl_quic_wire_decode_frame_ack(pkt, 3, &ack, &total_ranges)) in log_frame_actual()
/openssl/test/
H A Dquic_wire_test.c100 uint64_t total_ranges = 0, peek_total_ranges = 0; in encode_case_3_dec() local
110 if (!TEST_int_eq(ossl_quic_wire_decode_frame_ack(pkt, 3, &f, &total_ranges), fail < 0)) in encode_case_3_dec()
119 if (!TEST_uint64_t_eq(total_ranges, peek_total_ranges)) in encode_case_3_dec()
1381 uint64_t total_ranges = 0, peek_total_ranges = 0; in ack_generic_decode() local
1392 r = ossl_quic_wire_decode_frame_ack(pkt, 3, &f, &total_ranges); in ack_generic_decode()
1396 if (!TEST_uint64_t_eq(total_ranges, peek_total_ranges)) in ack_generic_decode()
/openssl/include/internal/
H A Dquic_wire.h516 uint64_t *total_ranges);
548 uint64_t *total_ranges);

Completed in 44 milliseconds