Symbol: BIO_read_ex
crypto/openssl/apps/s_client.c
2944
if (!BIO_read_ex(edfile, cbuf, BUFSIZZ, &readbytes))
crypto/openssl/crypto/bio/bf_prefix.c
78
return BIO_read_ex(BIO_next(b), in, size, numread);
crypto/openssl/crypto/bio/ossl_core_bio.c
95
return BIO_read_ex(cb->bio, data, dlen, readbytes);
crypto/openssl/include/openssl/bio.h
743
int BIO_read_ex(BIO *b, void *data, size_t dlen, size_t *readbytes);
crypto/openssl/include/openssl/core_dispatch.h
165
OSSL_CORE_MAKE_FUNC(int, BIO_read_ex, (OSSL_CORE_BIO *bio, void *data, size_t data_len, size_t *bytes_read))
crypto/openssl/test/bio_core_test.c
22
return BIO_read_ex(bio->bio, data, data_len, bytes_read);
crypto/openssl/test/bio_prefix_text.c
80
if (!BIO_read_ex(bio_in, buf, sizeof(buf), &bytes_in))
crypto/openssl/test/bio_readbuffer_test.c
36
|| !TEST_int_eq(BIO_read_ex(in, expected, sizeof(expected),
crypto/openssl/test/bio_readbuffer_test.c
83
if (!TEST_int_eq(BIO_read_ex(in_bio, buf, len, &bytes), 1))
crypto/openssl/test/bio_tfo_test.c
176
|| !TEST_true(BIO_read_ex(sbio, read_buffer, sizeof(read_buffer), &bytes))
crypto/openssl/test/evp_pkey_provided_test.c
105
if (!TEST_true(BIO_read_ex(file, buf, sizeof(buf), &readbytes))
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop-server.c
521
if (!BIO_read_ex(readbio, buf, BUF_SIZE, &bytes_read)) {
crypto/openssl/test/quic-openssl-docker/hq-interop/quic-hq-interop.c
896
if (!BIO_read_ex(req_bio, &reqnames[read_offset], REQ_STRING_SZ, &bytes_read)) {
crypto/openssl/test/quicapitest.c
983
if (!TEST_true(BIO_read_ex(thisbio, buf, sizeof(buf), &readbytes))
crypto/openssl/test/sslapitest.c
3646
if (!TEST_true(BIO_read_ex(rbio, data, sizeof(data), &rawread))
crypto/openssl/test/sslbuffertest.c
257
if (!TEST_true(BIO_read_ex(tmp, buf, sizeof(buf), &readbytes))