Symbol: BIO_gets
crypto/libressl/apps/openssl/apps.c
498
i = BIO_gets(pwdbio, tpass, APP_PASS_LEN);
crypto/libressl/apps/openssl/dgst.c
645
len = BIO_gets(bp, (char *) buf, BUFSIZE);
crypto/libressl/apps/openssl/ocsp.c
1366
len = BIO_gets(cbio, inbuf, sizeof inbuf);
crypto/libressl/apps/openssl/passwd.c
250
int r = BIO_gets(in, passwd, pw_maxlen + 1);
crypto/libressl/apps/openssl/passwd.c
259
r = BIO_gets(in, trash, sizeof trash);
crypto/libressl/apps/openssl/s_client.c
1237
mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_client.c
1246
mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_client.c
1272
BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_client.c
1278
mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_client.c
1297
mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/libressl/apps/openssl/s_server.c
2021
i = BIO_gets(io, buf, bufsize - 1);
crypto/libressl/crypto/asn1/a_enum.c
269
bufsize = BIO_gets(bp, buf, size);
crypto/libressl/crypto/asn1/a_enum.c
333
bufsize = BIO_gets(bp, buf, size);
crypto/libressl/crypto/asn1/a_int.c
435
bufsize = BIO_gets(bp, buf, size);
crypto/libressl/crypto/asn1/a_int.c
498
bufsize = BIO_gets(bp, buf, size);
crypto/libressl/crypto/asn1/a_string.c
358
bufsize = BIO_gets(bp, buf, size);
crypto/libressl/crypto/asn1/a_string.c
422
bufsize = BIO_gets(bp, buf, size);
crypto/libressl/crypto/asn1/asn_mime.c
555
while ((len = BIO_gets(in, linebuf, MAX_SMLEN)) > 0) {
crypto/libressl/crypto/asn1/asn_mime.c
623
while ((len = BIO_gets(bio, linebuf, MAX_SMLEN)) > 0) {
crypto/libressl/crypto/asn1/asn_mime.c
680
while ((len = BIO_gets(bio, linebuf, MAX_SMLEN)) > 0) {
crypto/libressl/crypto/asn1/bio_asn1.c
345
return BIO_gets(b->next_bio, str , size);
crypto/libressl/crypto/bio/bf_nbio.c
245
return (BIO_gets(bp->next_bio, buf, size));
crypto/libressl/crypto/conf/conf_def.c
259
BIO_gets(in, p, CONFBUFSIZE - 1);
crypto/libressl/crypto/objects/obj_dat.c
613
i = BIO_gets(in, buf, 512);
crypto/libressl/crypto/ocsp/ocsp_ht.c
336
n = BIO_gets(rctx->mem, (char *)rctx->iobuf, rctx->iobuflen);
crypto/libressl/crypto/pem/pem_lib.c
691
i = BIO_gets(bp, buf, 254);
crypto/libressl/crypto/pem/pem_lib.c
724
i = BIO_gets(bp, buf, 254);
crypto/libressl/crypto/pem/pem_lib.c
756
i = BIO_gets(bp, buf, 254);
crypto/libressl/crypto/pem/pem_lib.c
780
i = BIO_gets(bp, buf, 254);
crypto/libressl/crypto/txt_db/txt_db.c
114
BIO_gets(in, &(buf->data[offset]), size - offset);
crypto/libressl/include/openssl/bio.h
569
int BIO_gets(BIO *bp, char *buf, int size)