HomeSort by: relevance | last modified time | path
    Searched defs:rstream (Results 1 - 5 of 5) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/test/
quic_stream_test.c 377 QUIC_RSTREAM *rstream = NULL; local
389 if (!TEST_ptr(rstream = ossl_quic_rstream_new(NULL, NULL, 0)))
392 if (!TEST_true(ossl_quic_rstream_queue_data(rstream, NULL, 5,
394 || !TEST_true(ossl_quic_rstream_queue_data(rstream, NULL,
398 || !TEST_true(ossl_quic_rstream_peek(rstream, buf, sizeof(buf),
402 || !TEST_true(ossl_quic_rstream_queue_data(rstream, NULL,
406 || !TEST_true(ossl_quic_rstream_queue_data(rstream, NULL, 0,
408 || !TEST_true(ossl_quic_rstream_peek(rstream, buf, sizeof(buf),
413 || (use_rbuf && !TEST_false(ossl_quic_rstream_move_to_rbuf(rstream)))
415 && !TEST_true(ossl_quic_rstream_resize_rbuf(rstream,
479 QUIC_RSTREAM *rstream = NULL; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_rx_depack.c 269 QUIC_RSTREAM *rstream; local
285 rstream = ch->crypto_recv[ackm_data->pkt_space];
286 if (!ossl_assert(rstream != NULL))
312 if (!ossl_quic_rstream_queue_data(rstream, parent_pkt,
317 "internal error (rstream queue)");
609 && !ossl_quic_rstream_queue_data(stream->rstream, parent_pkt,
617 "internal error (rstream queue)");
628 && !ossl_quic_rstream_available(stream->rstream, &rs_avail, &rs_fin)) {
632 "internal error (rstream available)");
quic_channel.c 76 static int crypto_ensure_empty(QUIC_RSTREAM *rstream);
976 static int crypto_ensure_empty(QUIC_RSTREAM *rstream)
981 if (rstream == NULL)
984 if (!ossl_quic_rstream_available(rstream, &avail, &is_fin))
994 QUIC_RSTREAM *rstream; local
1020 rstream = ch->crypto_recv[ossl_quic_enc_level_to_pn_space(ch->rx_enc_level)];
1021 if (rstream == NULL)
1024 return ossl_quic_rstream_get_record(rstream, buf, bytes_read,
1031 QUIC_RSTREAM *rstream; local
1035 rstream = ch->crypto_recv[rx_pn_space]
    [all...]
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_stream_map.h 72 #define QUIC_RSTREAM_STATE_NONE 0 /* --- rstream == NULL */
74 #define QUIC_RSTREAM_STATE_SIZE_KNOWN 2 /* |-- rstream != NULL */
77 #define QUIC_RSTREAM_STATE_RESET_RECVD 5 /* |-- rstream == NULL */
138 * DO NOT test these pointers (sstream, rstream) for NULL. Determine the
141 * rstream either is or is not NULL respectively, therefore there is no
144 * a receive part can still have rstream as NULL. QUIC_SSTREAM and
152 QUIC_RSTREAM *rstream; /* NULL if TX only */ member in struct:quic_stream_st
367 * Do NOT use (s->rstream != NULL) to test this; use this function. Note that
368 * even if this function returns 1, s->rstream might be NULL if the QUIC_RSTREAM
418 * with it. If this returns 1, s->rstream is guaranteed to be non-NULL. Th
    [all...]
  /src/crypto/external/apache2/openssl/dist/demos/http3/
ossl-nghttp3-demo-server.c 397 SSL *rstream = NULL; local
409 rstream = SSL_new_stream(conn, SSL_STREAM_FLAG_UNI);
410 if (rstream != NULL) {
412 (unsigned long long)SSL_get_stream_id(rstream));
434 r_streamid = SSL_get_stream_id(rstream);
449 add_id(SSL_get_stream_id(rstream), rstream, h3ssl); local
456 SSL_free(rstream);

Completed in 34 milliseconds