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
132
if (!TEST_false(SSL_read_ex(clientquic, buf, 1, &numbytes))
crypto/openssl/test/quicapitest.c
1361
if (!TEST_true(SSL_read_ex(clientquic, buf, sizeof(buf), &numbytes))
crypto/openssl/test/quicapitest.c
148
if (!TEST_true(SSL_read_ex(clientquic, buf, 1, &numbytes))
crypto/openssl/test/quicapitest.c
1506
if (SSL_read_ex(*stream, buf, buflen, readbytes))
crypto/openssl/test/quicapitest.c
152
|| !TEST_true(SSL_read_ex(clientquic, buf + 1,
crypto/openssl/test/quicapitest.c
250
if (!TEST_true(SSL_read_ex(clientquic, buf, sizeof(buf), &numbytes))
crypto/openssl/test/quicapitest.c
259
if (!TEST_false(SSL_read_ex(clientquic, buf, sizeof(buf), &numbytes)))
crypto/openssl/test/quicapitest.c
3079
if (!TEST_true(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
11813
if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf) - 1,
crypto/openssl/test/sslapitest.c
11947
if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf) - 1,
crypto/openssl/test/sslapitest.c
12100
if (!TEST_true(SSL_read_ex(peerb, buf + offset,
crypto/openssl/test/sslapitest.c
12132
if (!TEST_true(SSL_read_ex(peera, buf, msglen, &readbytes))
crypto/openssl/test/sslapitest.c
12139
if (!TEST_true(SSL_read_ex(peera, buf + readbytes,
crypto/openssl/test/sslapitest.c
12371
if (!TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes)))
crypto/openssl/test/sslapitest.c
12562
while (SSL_read_ex(serverssl, outbuf + totread, sizeof(outbuf) - totread,
crypto/openssl/test/sslapitest.c
1556
if (!SSL_read_ex(serverssl, outbuf + totread, bufsz - totread,
crypto/openssl/test/sslapitest.c
1833
if (!TEST_true(SSL_read_ex(serverssl, buf, SSL3_RT_MAX_PLAIN_LENGTH + 1,
crypto/openssl/test/sslapitest.c
2911
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes))
crypto/openssl/test/sslapitest.c
2915
|| !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes)))
crypto/openssl/test/sslapitest.c
2925
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes))
crypto/openssl/test/sslapitest.c
2939
|| !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes))
crypto/openssl/test/sslapitest.c
2950
|| !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes))
crypto/openssl/test/sslapitest.c
2988
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes))
crypto/openssl/test/sslapitest.c
2992
|| !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes)))
crypto/openssl/test/sslapitest.c
3003
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes))
crypto/openssl/test/sslapitest.c
3007
|| !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &nbytes)))
crypto/openssl/test/sslapitest.c
3788
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3809
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3864
if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3880
if (!TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3889
if (!TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3890
|| !TEST_false(SSL_read_ex(clientssl, buf, sizeof(buf),
crypto/openssl/test/sslapitest.c
3897
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3944
|| !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4235
|| !TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf),
crypto/openssl/test/sslapitest.c
4272
if (!TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4294
|| !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4401
|| !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4407
if (!TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4753
if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4815
if (!TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4885
|| !TEST_true(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
4889
|| !SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes)
crypto/openssl/test/sslapitest.c
7495
if (!TEST_true(SSL_read_ex(reader, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
8467
|| !TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
9193
if (!TEST_false(SSL_read_ex(serverssl, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
9220
if (!TEST_true(SSL_read_ex(clientssl, buf, sizeof(buf),
crypto/openssl/test/sslapitest.c
9224
|| !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
9895
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),