Symbol: BIO_read
crypto/libressl/apps/openssl/apps.c
1914
len = BIO_read(in, tbuf, len);
crypto/libressl/apps/openssl/asn1pars.c
332
i = BIO_read(in, &(buf->data[num]), BUFSIZ);
crypto/libressl/apps/openssl/dgst.c
535
siglen = BIO_read(sigbio, sigbuf, siglen);
crypto/libressl/apps/openssl/dgst.c
610
i = BIO_read(bp, (char *) buf, BUFSIZE);
crypto/libressl/apps/openssl/enc.c
601
} else if (BIO_read(rbio, mbuf, sizeof mbuf) != sizeof mbuf
crypto/libressl/apps/openssl/enc.c
602
|| BIO_read(rbio,
crypto/libressl/apps/openssl/enc.c
739
inl = BIO_read(rbio, (char *) buff, bsize);
crypto/libressl/apps/openssl/rsautl.c
343
rsa_inlen = BIO_read(in, rsa_in, keysize * 2);
crypto/libressl/apps/openssl/s_client.c
1259
BIO_read(sbio, sbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_client.c
1261
mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_client.c
1267
BIO_read(sbio, sbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_client.c
1291
BIO_read(sbio, sbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_client.c
1304
BIO_read(sbio, sbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_client.c
1312
seen = BIO_read(sbio, mbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_client.c
1320
seen = BIO_read(sbio, mbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_client.c
1329
seen = BIO_read(sbio, sbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_client.c
1337
mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_server.c
2202
i = BIO_read(file, buf, bufsize);
crypto/libressl/apps/openssl/ts.c
702
while ((length = BIO_read(input, buffer, sizeof(buffer))) > 0) {
crypto/libressl/crypto/asn1/asn1_item.c
460
i = BIO_read(in, &(b->data[len]), want);
crypto/libressl/crypto/asn1/asn1_item.c
532
i = BIO_read(in, &(b->data[len]), chunk);
crypto/libressl/crypto/asn1/asn_mime.c
550
while ((len = BIO_read(in, linebuf, MAX_SMLEN)) > 0)
crypto/libressl/crypto/asn1/asn_mime.c
594
while ((len = BIO_read(in, iobuf, sizeof(iobuf))) > 0)
crypto/libressl/crypto/asn1/bio_asn1.c
331
return BIO_read(b->next_bio, in , inl);
crypto/libressl/crypto/bio/bf_buff.c
184
i = BIO_read(b->next_bio, out, outl);
crypto/libressl/crypto/bio/bf_buff.c
202
i = BIO_read(b->next_bio, ctx->ibuf, ctx->ibuf_size);
crypto/libressl/crypto/bio/bf_buff.c
503
i = BIO_read(b->next_bio, ctx->ibuf, ctx->ibuf_size);
crypto/libressl/crypto/bio/bf_nbio.c
155
ret = BIO_read(b->next_bio, out, outl);
crypto/libressl/crypto/bio/bss_acpt.c
305
ret = BIO_read(b->next_bio, out, outl);
crypto/libressl/crypto/cms/cms_smime.c
96
i = BIO_read(in, buf, sizeof(buf));
crypto/libressl/crypto/evp/bio_b64.c
201
i = BIO_read(b->next_bio, &(ctx->tmp[ctx->tmp_len]),
crypto/libressl/crypto/evp/bio_enc.c
186
i = BIO_read(b->next_bio, &(ctx->buf[BUF_OFFSET]), ENC_BLOCK_SIZE);
crypto/libressl/crypto/evp/bio_md.c
138
ret = BIO_read(b->next_bio, out, outl);
crypto/libressl/crypto/ocsp/ocsp_ht.c
270
n = BIO_read(rctx->io, rctx->iobuf, rctx->iobuflen);
crypto/libressl/crypto/pem/pvkfmt.c
281
if (BIO_read(in, hdr_buf, 16) != 16) {
crypto/libressl/crypto/pem/pvkfmt.c
296
if (BIO_read(in, buf, length) != (int)length) {
crypto/libressl/crypto/pem/pvkfmt.c
815
if (BIO_read(in, pvk_hdr, 24) != 24) {
crypto/libressl/crypto/pem/pvkfmt.c
830
if (BIO_read(in, buf, buflen) != buflen) {
crypto/libressl/crypto/pkcs7/pk7_smime.c
386
i = BIO_read(p7bio, buf, sizeof(buf));
crypto/libressl/crypto/pkcs7/pk7_smime.c
574
i = BIO_read(tmpmem, buf, sizeof(buf));
crypto/libressl/crypto/ts/ts_rsp_verify.c
208
while ((i = BIO_read(p7bio, buf, sizeof(buf))) > 0)
crypto/libressl/crypto/ts/ts_rsp_verify.c
726
while ((length = BIO_read(data, buffer, sizeof(buffer))) > 0) {
crypto/libressl/crypto/x509/x509_pci.c
166
while ((n = BIO_read(b, buf, sizeof(buf))) > 0 ||
crypto/libressl/include/openssl/bio.h
567
int BIO_read(BIO *b, void *data, int len)
crypto/libressl/ssl/ssl_pkt.c
249
i = BIO_read(s->rbio, pkt + len + left, max - left);
crypto/libressl/ssl/tls13_legacy.c
36
if ((n = BIO_read(ssl->rbio, buf, len)) <= 0) {