Symbol: SSL_get_rbio
crypto/openssl/apps/lib/s_cb.c
867
(void)BIO_dgram_get_peer(SSL_get_rbio(ssl), peer);
crypto/openssl/apps/s_client.c
3576
BIO_number_read(SSL_get_rbio(s)),
crypto/openssl/apps/s_client.c
3606
if (BIO_get_ktls_recv(SSL_get_rbio(s)))
crypto/openssl/apps/s_server.c
2667
BIO_set_callback_ex(SSL_get_rbio(con), count_reads_callback);
crypto/openssl/apps/s_server.c
2947
BIO_set_callback_arg(SSL_get_rbio(con), (char *)&read_counter);
crypto/openssl/apps/s_server.c
2949
BIO_set_callback_arg(SSL_get_rbio(con), NULL);
crypto/openssl/apps/s_server.c
3248
if (BIO_get_ktls_recv(SSL_get_rbio(con)))
crypto/openssl/apps/s_server.c
3354
BIO_set_callback_ex(SSL_get_rbio(con), bio_dump_callback);
crypto/openssl/apps/s_server.c
3355
BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
crypto/openssl/apps/s_server.c
3796
BIO_set_callback_ex(SSL_get_rbio(con), bio_dump_callback);
crypto/openssl/apps/s_server.c
3797
BIO_set_callback_arg(SSL_get_rbio(con), (char *)bio_s_out);
crypto/openssl/include/openssl/ssl.h
1672
__owur BIO *SSL_get_rbio(const SSL *s);
crypto/openssl/ssl/bio_ssl.c
300
bio = SSL_get_rbio(ssl);
crypto/openssl/ssl/bio_ssl.c
331
ret = BIO_pending(SSL_get_rbio(ssl));
crypto/openssl/ssl/bio_ssl.c
339
if ((next != NULL) && (next != SSL_get_rbio(ssl))) {
crypto/openssl/ssl/bio_ssl.c
395
ret = BIO_ctrl(SSL_get_rbio(ssl), cmd, num, ptr);
crypto/openssl/ssl/bio_ssl.c
409
ret = BIO_ctrl(SSL_get_rbio(ssl), cmd, num, ptr);
crypto/openssl/ssl/bio_ssl.c
425
ret = BIO_callback_ctrl(SSL_get_rbio(ssl), cmd, fp);
crypto/openssl/ssl/d1_lib.c
307
dtls1_bio_set_next_timeout(SSL_get_rbio(ssl), s->d1);
crypto/openssl/ssl/d1_lib.c
445
rbio = SSL_get_rbio(ssl);
crypto/openssl/ssl/record/rec_layer_d1.c
362
if (BIO_dgram_is_sctp(SSL_get_rbio(s)) && sc->d1->shutdown_received
crypto/openssl/ssl/record/rec_layer_d1.c
363
&& BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s)) <= 0) {
crypto/openssl/ssl/record/rec_layer_d1.c
423
if (BIO_dgram_is_sctp(SSL_get_rbio(s)) && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s)) > 0) {
crypto/openssl/ssl/record/rec_layer_d1.c
426
BIO_clear_retry_flags(SSL_get_rbio(s));
crypto/openssl/ssl/record/rec_layer_d1.c
427
BIO_set_retry_read(SSL_get_rbio(s));
crypto/openssl/ssl/record/rec_layer_d1.c
524
bio = SSL_get_rbio(s);
crypto/openssl/ssl/record/rec_layer_d1.c
565
bio = SSL_get_rbio(s);
crypto/openssl/ssl/record/rec_layer_s3.c
1059
bio = SSL_get_rbio(ssl);
crypto/openssl/ssl/record/rec_layer_s3.c
965
rbio = SSL_get_rbio(ssl);
crypto/openssl/ssl/ssl_lib.c
1599
if (rbio == SSL_get_rbio(s) && wbio == SSL_get_wbio(s))
crypto/openssl/ssl/ssl_lib.c
1614
if (rbio == SSL_get_rbio(s)) {
crypto/openssl/ssl/ssl_lib.c
1623
if (wbio == SSL_get_wbio(s) && SSL_get_rbio(s) != SSL_get_wbio(s)) {
crypto/openssl/ssl/ssl_lib.c
1680
b = SSL_get_rbio(s);
crypto/openssl/ssl/ssl_lib.c
1735
BIO *rbio = SSL_get_rbio(s);
crypto/openssl/ssl/ssl_lib.c
4861
bio = SSL_get_rbio(s);
crypto/openssl/ssl/statem/statem_clnt.c
418
rbio = SSL_get_rbio(SSL_CONNECTION_GET_SSL(s));
crypto/openssl/ssl/statem/statem_dtls.c
1056
BIO_clear_retry_flags(SSL_get_rbio(ssl));
crypto/openssl/ssl/statem/statem_dtls.c
1057
BIO_set_retry_read(SSL_get_rbio(ssl));
crypto/openssl/ssl/statem/statem_dtls.c
1082
BIO_set_flags(SSL_get_rbio(ssl), BIO_FLAGS_READ);
crypto/openssl/ssl/statem/statem_srvr.c
335
rbio = SSL_get_rbio(SSL_CONNECTION_GET_SSL(s));
crypto/openssl/test/dtls_mtu_test.c
72
|| !TEST_ptr(sc_bio = SSL_get_rbio(srvr_ssl))
crypto/openssl/test/helpers/quictestlib.c
483
if (BIO_pending(SSL_get_rbio(s)) > 0
crypto/openssl/test/quicapitest.c
855
if (!TEST_ptr(bio = SSL_get_rbio(ssl)))
crypto/openssl/test/quicapitest.c
862
if (!TEST_ptr(bio = SSL_get_rbio(ssl)))
crypto/openssl/test/quicapitest.c
871
if (!TEST_ptr_null(SSL_get_rbio(ssl)))
crypto/openssl/test/radix/quic_ops.c
990
dst_bio = SSL_get_rbio(dst_ssl);
crypto/openssl/test/radix/quic_ops.c
991
src_bio = SSL_get_rbio(src_ssl);
crypto/openssl/test/recordlentest.c
126
serverbio = SSL_get_rbio(serverssl);
crypto/openssl/test/ssl_old_test.c
2157
&& BIO_get_ktls_recv(SSL_get_rbio(s_ssl)))
crypto/openssl/test/ssl_old_test.c
2161
else if (BIO_get_ktls_recv(SSL_get_rbio(s_ssl)))
crypto/openssl/test/ssl_old_test.c
2165
&& BIO_get_ktls_recv(SSL_get_rbio(c_ssl)))
crypto/openssl/test/ssl_old_test.c
2169
else if (BIO_get_ktls_recv(SSL_get_rbio(c_ssl)))
crypto/openssl/test/sslapitest.c
10535
rbio = SSL_get_rbio(clientssl);
crypto/openssl/test/sslapitest.c
12018
if (!TEST_true(BIO_write_ex(SSL_get_rbio(serverssl), dummyheader,
crypto/openssl/test/sslapitest.c
3645
rbio = SSL_get_rbio(serverssl);
crypto/openssl/test/sslapitest.c
8819
c2s = SSL_get_rbio(serverssl);
crypto/openssl/test/sslbuffertest.c
256
tmp = SSL_get_rbio(serverssl);
usr.sbin/rpc.tlsclntd/rpc.tlsclntd.c
646
ret = BIO_get_ktls_recv(SSL_get_rbio(ssl));
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
836
ret = BIO_get_ktls_recv(SSL_get_rbio(ssl));