Lines Matching defs:chdr
2062 * Given a CRYPTO frame header with accurate chdr->len and a budget
2063 * (space_left), try to find the optimal value of chdr->len to fill as much of
2065 * chdr->len cause larger encoded sizes of the length field of the frame, which
2070 OSSL_QUIC_FRAME_CRYPTO *chdr,
2078 if (chdr->len > SIZE_MAX)
2081 orig_len = (size_t)chdr->len;
2083 chdr->len = 0;
2084 base_hdr_len = ossl_quic_wire_get_encoded_frame_len_crypto_hdr(chdr);
2085 chdr->len = orig_len;
2130 OSSL_QUIC_FRAME_CRYPTO chdr = { 0 };
2151 chdr.offset = shdr.offset;
2152 chdr.len = shdr.len;
2154 if (chdr.len == 0)
2158 if (!determine_crypto_len(h, &chdr, space_left, &hdr_bytes,
2159 &chdr.len))
2168 ossl_quic_sstream_adjust_iov((size_t)chdr.len, iov, num_stream_iovec);
2182 if (!ossl_quic_wire_encode_frame_crypto_hdr(wpkt, &chdr)) {
2199 chunk.start = chdr.offset;
2200 chunk.end = chdr.offset + chdr.len - 1;