Searched refs:rstream (Results 1 – 8 of 8) sorted by relevance
/openssl/test/ |
H A D | quic_stream_test.c | 378 QUIC_RSTREAM *rstream = NULL; in test_rstream_simple() local 392 if (!TEST_true(ossl_quic_rstream_queue_data(rstream, NULL, 5, in test_rstream_simple() 394 || !TEST_true(ossl_quic_rstream_queue_data(rstream, NULL, in test_rstream_simple() 402 || !TEST_true(ossl_quic_rstream_queue_data(rstream, NULL, in test_rstream_simple() 415 && !TEST_true(ossl_quic_rstream_resize_rbuf(rstream, in test_rstream_simple() 418 || !TEST_true(ossl_quic_rstream_queue_data(rstream, NULL, in test_rstream_simple() 450 && !TEST_true(ossl_quic_rstream_resize_rbuf(rstream, in test_rstream_simple() 471 ossl_quic_rstream_free(rstream); in test_rstream_simple() 479 QUIC_RSTREAM *rstream = NULL; in test_rstream_random() local 492 ossl_quic_rstream_set_cleanse(rstream, 1); in test_rstream_random() [all …]
|
H A D | quic_txp_test.c | 1497 || !TEST_ptr(s->rstream = ossl_quic_rstream_new(&s->rxfc, in run_script()
|
/openssl/ssl/quic/ |
H A D | quic_stream_map.c | 190 ossl_quic_rstream_free(stream->rstream); in ossl_quic_stream_map_release() 191 stream->rstream = NULL; in ossl_quic_stream_map_release() 585 ossl_quic_rstream_free(qs->rstream); in ossl_quic_stream_map_notify_totally_read() 586 qs->rstream = NULL; in ossl_quic_stream_map_notify_totally_read() 619 ossl_quic_rstream_free(qs->rstream); in ossl_quic_stream_map_notify_reset_recv_part() 620 qs->rstream = NULL; in ossl_quic_stream_map_notify_reset_recv_part()
|
H A D | quic_rx_depack.c | 268 QUIC_RSTREAM *rstream; in depack_do_frame_crypto() local 284 rstream = ch->crypto_recv[ackm_data->pkt_space]; in depack_do_frame_crypto() 285 if (!ossl_assert(rstream != NULL)) in depack_do_frame_crypto() 311 if (!ossl_quic_rstream_queue_data(rstream, parent_pkt, in depack_do_frame_crypto() 607 && !ossl_quic_rstream_queue_data(stream->rstream, parent_pkt, in depack_do_frame_stream() 626 && !ossl_quic_rstream_available(stream->rstream, &rs_avail, &rs_fin)) { in depack_do_frame_stream()
|
H A D | quic_channel.c | 79 static int crypto_ensure_empty(QUIC_RSTREAM *rstream); 877 static int crypto_ensure_empty(QUIC_RSTREAM *rstream) in crypto_ensure_empty() argument 882 if (rstream == NULL) in crypto_ensure_empty() 885 if (!ossl_quic_rstream_available(rstream, &avail, &is_fin)) in crypto_ensure_empty() 895 QUIC_RSTREAM *rstream; in ch_on_crypto_recv_record() local 923 if (rstream == NULL) in ch_on_crypto_recv_record() 933 QUIC_RSTREAM *rstream; in ch_on_crypto_release_record() local 937 rstream = ch->crypto_recv[rx_pn_space]; in ch_on_crypto_release_record() 938 if (rstream == NULL) in ch_on_crypto_release_record() 3450 ossl_quic_rstream_free(qs->rstream); in ch_init_new_stream() [all …]
|
H A D | quic_tserver.c | 282 if (!ossl_quic_rstream_read(qs->rstream, buf, buf_len, in ossl_quic_tserver_read() 337 if (!ossl_quic_rstream_peek(qs->rstream, buf, sizeof(buf), in ossl_quic_tserver_has_read_ended() 344 if (!ossl_quic_rstream_read(qs->rstream, buf, sizeof(buf), in ossl_quic_tserver_has_read_ended()
|
H A D | quic_impl.c | 710 if (xso->stream->rstream != NULL) in xso_update_options() 711 ossl_quic_rstream_set_cleanse(xso->stream->rstream, cleanse); in xso_update_options() 2676 if (!ossl_quic_rstream_peek(stream->rstream, buf, buf_len, in quic_read_actual() 2681 if (!ossl_quic_rstream_read(stream->rstream, buf, buf_len, in quic_read_actual() 4045 && ossl_quic_rstream_available(xso->stream->rstream, &avail, &fin) in test_poll_event_r()
|
/openssl/include/internal/ |
H A D | quic_stream_map.h | 152 QUIC_RSTREAM *rstream; /* NULL if TX only */ member 524 if (!ossl_quic_rstream_available(s->rstream, &avail, &fin)) in ossl_quic_stream_recv_pending()
|
Completed in 41 milliseconds