Lines Matching refs:rstream
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
922 rstream = ch->crypto_recv[ossl_quic_enc_level_to_pn_space(ch->rx_enc_level)]; in ch_on_crypto_recv_record()
923 if (rstream == NULL) in ch_on_crypto_recv_record()
926 return ossl_quic_rstream_get_record(rstream, buf, bytes_read, 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()
946 return ossl_quic_rstream_release_record(rstream, bytes_read); in ch_on_crypto_release_record()
3402 if ((qs->rstream = ossl_quic_rstream_new(NULL, NULL, 0)) == NULL) in ch_init_new_stream()
3450 ossl_quic_rstream_free(qs->rstream); in ch_init_new_stream()
3451 qs->rstream = NULL; in ch_init_new_stream()