Symbol: SSL_read_ex
crypto/openssl/demos/guide/quic-client-block.c
256
while (SSL_read_ex(ssl, buf, sizeof(buf), &readbytes)) {
crypto/openssl/demos/guide/quic-client-non-block.c
377
while (!eof && !SSL_read_ex(ssl, buf, sizeof(buf), &readbytes)) {
crypto/openssl/demos/guide/quic-multi-stream.c
299
while (SSL_read_ex(stream1, buf, sizeof(buf), &readbytes)) {
crypto/openssl/demos/guide/quic-multi-stream.c
376
while (SSL_read_ex(stream3, buf, sizeof(buf), &readbytes))
crypto/openssl/demos/guide/quic-server-block.c
250
while (SSL_read_ex(conn, buf, sizeof(buf), &nread) > 0) {
crypto/openssl/demos/guide/quic-server-non-block.c
412
ret = SSL_read_ex(conn, buf + total_read, sizeof(buf) - total_read,
crypto/openssl/demos/guide/tls-client-block.c
233
while (SSL_read_ex(ssl, buf, sizeof(buf), &readbytes)) {
crypto/openssl/demos/guide/tls-client-non-block.c
314
while (!eof && !SSL_read_ex(ssl, buf, sizeof(buf), &readbytes)) {
crypto/openssl/demos/guide/tls-server-block.c
266
while (SSL_read_ex(ssl, buf, sizeof(buf), &nread) > 0) {
crypto/openssl/demos/http3/ossl-nghttp3.c
494
ec = SSL_read_ex(s->s, s->buf, sizeof(s->buf), &num_bytes);
crypto/openssl/include/openssl/ssl.h
2003
__owur int SSL_read_ex(SSL *ssl, void *buf, size_t num, size_t *readbytes);
crypto/openssl/ssl/ssl_lib.c
2420
ret = SSL_read_ex(s, buf, num, readbytes);
crypto/openssl/test/helpers/ssltestlib.c
1417
if (SSL_read_ex(clientssl, &buf, sizeof(buf), &readbytes) > 0) {
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop-server.c
478
ret = SSL_read_ex(stream, &buf[total_read],
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop.c
966
if (!SSL_read_ex(poll_list[poll_idx].desc.value.ssl, buf,
crypto/openssl/test/quic_client_test.c
131
ret = SSL_read_ex(c_ssl, msg2 + c_total_read,
crypto/openssl/test/quic_multistream_test.c
1367
r = SSL_read_ex(c_tgt, tmp_buf + offset, op->arg1 - offset,
crypto/openssl/test/quic_multistream_test.c
1422
r = SSL_read_ex(c_tgt, buf, sizeof(buf), &bytes_read);
crypto/openssl/test/quic_multistream_test.c
1742
r = SSL_read_ex(c_tgt, buf, sizeof(buf), &bytes_read);
crypto/openssl/test/quic_multistream_test.c
1757
r = SSL_read_ex(c_tgt, buf, sizeof(buf), &bytes_read);
crypto/openssl/test/quic_tserver_test.c
277
ret = SSL_read_ex(c_ssl, msg3 + c_total_read,
crypto/openssl/test/quic_tserver_test.c
296
ret = SSL_read_ex(c_ssl, &c, sizeof(c), &l);
crypto/openssl/test/quicapitest.c
131
if (!TEST_false(SSL_read_ex(clientquic, buf, 1, &numbytes))
crypto/openssl/test/quicapitest.c
1360
if (!TEST_true(SSL_read_ex(clientquic, buf, sizeof(buf), &numbytes))
crypto/openssl/test/quicapitest.c
147
if (!TEST_true(SSL_read_ex(clientquic, buf, 1, &numbytes))
crypto/openssl/test/quicapitest.c
1505
if (SSL_read_ex(*stream, buf, buflen, readbytes))
crypto/openssl/test/quicapitest.c
151
|| !TEST_true(SSL_read_ex(clientquic, buf + 1,
crypto/openssl/test/quicapitest.c
249
if (!TEST_true(SSL_read_ex(clientquic, buf, sizeof(buf), &numbytes))
crypto/openssl/test/quicapitest.c
258
if (!TEST_false(SSL_read_ex(clientquic, buf, sizeof(buf), &numbytes)))
crypto/openssl/test/quicfaultstest.c
350
if (!TEST_true(SSL_read_ex(cssl, buf, sizeof(buf), &bytesread)))
crypto/openssl/test/radix/quic_ops.c
660
r = SSL_read_ex(ssl, RT()->tmp_buf + RT()->tmp_buf_offset,
crypto/openssl/test/radix/quic_ops.c
698
r = SSL_read_ex(ssl, buf, sizeof(buf), &bytes_read);
crypto/openssl/test/radix/quic_ops.c
807
ret = SSL_read_ex(ssl, buf, sizeof(buf), &bytes_read);
crypto/openssl/test/recordlentest.c
167
if (!TEST_false(SSL_read_ex(serverssl, &buf, sizeof(buf), &written)))
crypto/openssl/test/sslapitest.c
11465
if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf) - 1,
crypto/openssl/test/sslapitest.c
11599
if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf) - 1,
crypto/openssl/test/sslapitest.c
11752
if (!TEST_true(SSL_read_ex(peerb, buf + offset,
crypto/openssl/test/sslapitest.c
11784
if (!TEST_true(SSL_read_ex(peera, buf, msglen, &readbytes))
crypto/openssl/test/sslapitest.c
11791
if (!TEST_true(SSL_read_ex(peera, buf + readbytes,
crypto/openssl/test/sslapitest.c
12023
if (!TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes)))
crypto/openssl/test/sslapitest.c
12214
while (SSL_read_ex(serverssl, outbuf + totread, sizeof(outbuf) - totread,
crypto/openssl/test/sslapitest.c
1695
if (!TEST_true(SSL_read_ex(serverssl, buf, SSL3_RT_MAX_PLAIN_LENGTH + 1,
crypto/openssl/test/sslapitest.c
2773
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes))
crypto/openssl/test/sslapitest.c
2777
|| !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes)))
crypto/openssl/test/sslapitest.c
2787
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes))
crypto/openssl/test/sslapitest.c
2801
|| !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes))
crypto/openssl/test/sslapitest.c
2812
|| !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes))
crypto/openssl/test/sslapitest.c
2850
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes))
crypto/openssl/test/sslapitest.c
2854
|| !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes)))
crypto/openssl/test/sslapitest.c
2865
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes))
crypto/openssl/test/sslapitest.c
2869
|| !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes)))
crypto/openssl/test/sslapitest.c
3604
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3625
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3680
if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3696
if (!TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3705
if (!TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3706
|| !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf),
crypto/openssl/test/sslapitest.c
3713
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3760
|| !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4051
|| !TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf),
crypto/openssl/test/sslapitest.c
4088
if (!TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4110
|| !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4217
|| !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4223
if (!TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4569
if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4631
if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4701
|| !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4705
|| !SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes)
crypto/openssl/test/sslapitest.c
7311
if (!TEST_true(SSL_read_ex(reader, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
8283
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
8909
if (!TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
8936
if (!TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf),
crypto/openssl/test/sslapitest.c
8940
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf),
crypto/openssl/test/sslapitest.c
926
if (SSL_read_ex(clientssl, &buf, sizeof(buf), &readbytes) > 0) {
crypto/openssl/test/sslapitest.c
933
if (SSL_read_ex(serverssl, &buf, sizeof(buf), &readbytes) > 0) {
crypto/openssl/test/sslapitest.c
9583
if (!TEST_true(SSL_read_ex(clientssl, p, MULTIBLOCK_FRAGSIZE, &readbytes)))
crypto/openssl/test/sslbuffertest.c
248
if (!TEST_true(SSL_read_ex(serverssl, buf, readlen, &readbytes))
crypto/openssl/test/sslbuffertest.c
305
if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf),
crypto/openssl/test/sslbuffertest.c
314
if (!TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf),