| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| quic_fc.c | 148 rxfc->is_fin = 0; 199 int ossl_quic_rxfc_on_rx_stream_frame(QUIC_RXFC *rxfc, uint64_t end, int is_fin) 206 if (rxfc->is_fin && ((is_fin && rxfc->hwm != end) || end > rxfc->hwm)) { 212 if (is_fin) 213 rxfc->is_fin = 1; 222 } else if (end < rxfc->hwm && is_fin) { 253 return !rxfc->is_fin && window_rem <= threshold; 404 if (!rxfc->is_fin)
|
| quic_tserver.c | 259 int is_fin = 0; local 287 bytes_read, &is_fin)) 306 if (is_fin) 321 int is_fin = 0; local 342 &bytes_read, &is_fin)) 345 if (is_fin && bytes_read == 0) { 349 &bytes_read, &is_fin)) 352 assert(is_fin && bytes_read == 0);
|
| quic_sstream.c | 119 hdr->is_fin = 1; 159 hdr->is_fin = qss->have_final_size
|
| quic_rx_depack.c | 186 frame_data.final_size, /*is_fin=*/1)) { 297 /*is_fin=*/0)) { 430 /*is_fin=*/0)) { 541 frame_data.is_fin)) { 581 if (frame_data.is_fin 608 if ((frame_data.len > 0 || frame_data.is_fin) 613 frame_data.is_fin)) {
|
| quic_txp.c | 2233 if (!ossl_assert(chunk->shdr.len > 0 || chunk->shdr.is_fin)) 2248 chunk->shdr.is_fin = 0; 2251 if (chunk->shdr.len == 0 && !chunk->shdr.is_fin) { 2403 if (shdr->is_fin) 2411 shdr->is_fin = 0; 2458 chunk.has_fin = shdr->is_fin;
|
| qlog_event_helpers.c | 315 if (f.is_fin)
|
| quic_wire.c | 187 if (f->is_fin) 694 f->is_fin = ((frame_type & OSSL_QUIC_FRAME_FLAG_STREAM_FIN) != 0);
|
| quic_channel.c | 979 int is_fin = 0; local 984 if (!ossl_quic_rstream_available(rstream, &avail, &is_fin)) 995 int is_fin = 0; /* crypto stream is never finished, so we don't use this */ local 1025 &is_fin);
|
| quic_stream_map.c | 275 return (shdr.is_fin && shdr.len == 0) || shdr.offset < fc_limit;
|
| quic_impl.c | 2940 int is_fin = 0, err, eos; local 2954 bytes_read, &is_fin)) 2959 bytes_read, &is_fin)) 2980 if (is_fin && !peek) { 2991 if (*bytes_read == 0 && is_fin) {
|
| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| quic_fc.h | 142 unsigned char error_code, has_cwm_changed, is_fin, standalone; member in struct:quic_rxfc_st 187 * is_fin should be 1 if the STREAM frame had the FIN flag set and 0 otherwise. 200 uint64_t end, int is_fin);
|
| quic_wire.h | 174 unsigned int is_fin : 1; member in struct:ossl_quic_frame_stream_st 305 * If f->is_fin is non-zero, the frame is marked as the final frame in the 595 * f->is_fin is set according to whether the frame was marked as ending the
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| quic_fifd_test.c | 148 || !TEST_int_eq(hdr.is_fin, i == 1) 160 chunk.has_fin = hdr.is_fin; 293 || !TEST_true(hdr.is_fin)
|
| quic_stream_test.c | 78 || !TEST_false(hdr.is_fin)) 95 || !TEST_false(hdr.is_fin)) 121 || !TEST_false(hdr.is_fin)) 164 || !TEST_true(hdr.is_fin) 189 || !TEST_true(hdr.is_fin)
|
| quic_fc_test.c | 206 #define RX_OPC_RX 3 /* arg0=end, arg1=is_fin */ 235 #define RX_OP_RX(stream_idx, end, is_fin) \ 236 { RX_OPC_RX, (stream_idx), (end), (is_fin) },
|
| quic_wire_test.c | 397 if (!TEST_int_eq(f.is_fin, 0)) 452 if (!TEST_int_eq(f.is_fin, 1))
|
| /src/external/bsd/unbound/dist/testcode/ |
| doqclient.c | 697 struct doq_client_stream* str, int is_fin) 701 if(is_fin)
|