Symbol: BIO_gets
crypto/openssl/apps/dgst.c
699
len = BIO_gets(bp, (char *)buf, BUFSIZE);
crypto/openssl/apps/enc.c
299
i = BIO_gets(in, buf, sizeof(buf));
crypto/openssl/apps/lib/apps.c
283
i = BIO_gets(pwdbio, tpass, APP_PASS_LEN);
crypto/openssl/apps/lib/http_server.c
314
len = BIO_gets(cbio, reqbuf, sizeof(reqbuf));
crypto/openssl/apps/lib/http_server.c
418
len = BIO_gets(cbio, inbuf, sizeof(inbuf));
crypto/openssl/apps/passwd.c
281
int r = BIO_gets(in, passwd, pw_maxlen + 1);
crypto/openssl/apps/passwd.c
290
r = BIO_gets(in, trash, sizeof(trash));
crypto/openssl/apps/s_client.c
2460
mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/openssl/apps/s_client.c
2474
mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/openssl/apps/s_client.c
2506
BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/openssl/apps/s_client.c
2512
mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/openssl/apps/s_client.c
2536
mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/openssl/apps/s_client.c
2647
mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/openssl/apps/s_client.c
2774
BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/openssl/apps/s_client.c
2778
BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/openssl/apps/s_client.c
2783
mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/openssl/apps/s_client.c
2818
mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ);
crypto/openssl/apps/s_server.c
3395
i = BIO_gets(!BIO_eof(edio) ? edio : io, buf, bufsize + 1);
crypto/openssl/apps/s_server.c
3459
BIO_gets(io, buf, bufsize + 1);
crypto/openssl/apps/s_server.c
3833
i = BIO_gets(io, buf, bufsize + 1);
crypto/openssl/crypto/asn1/asn_mime.c
553
while ((len = BIO_gets(in, linebuf, MAX_SMLEN)) > 0) {
crypto/openssl/crypto/asn1/asn_mime.c
704
while ((len = BIO_gets(bio, linebuf, MAX_SMLEN)) > 0) {
crypto/openssl/crypto/asn1/bio_asn1.c
310
return BIO_gets(next, str, size);
crypto/openssl/crypto/asn1/f_int.c
127
bufsize = BIO_gets(bp, buf, size);
crypto/openssl/crypto/asn1/f_int.c
61
bufsize = BIO_gets(bp, buf, size);
crypto/openssl/crypto/asn1/f_string.c
120
bufsize = BIO_gets(bp, buf, size);
crypto/openssl/crypto/asn1/f_string.c
53
bufsize = BIO_gets(bp, buf, size);
crypto/openssl/crypto/bio/bf_lbuf.c
329
return BIO_gets(b->next_bio, buf, size);
crypto/openssl/crypto/bio/bf_nbio.c
181
return BIO_gets(bp->next_bio, buf, size);
crypto/openssl/crypto/bio/bf_null.c
105
return BIO_gets(bp->next_bio, buf, size);
crypto/openssl/crypto/bio/bf_prefix.c
201
return BIO_gets(BIO_next(b), buf, size);
crypto/openssl/crypto/bio/ossl_core_bio.c
106
return BIO_gets(cb->bio, buf, size);
crypto/openssl/crypto/conf/conf_def.c
262
if (in != NULL && BIO_gets(in, p, CONFBUFSIZE - 1) < 0)
crypto/openssl/crypto/http/http_client.c
1529
read_len = BIO_gets(fbio, mbuf, BUF_SIZE);
crypto/openssl/crypto/http/http_client.c
1576
read_len = BIO_gets(fbio, mbuf, BUF_SIZE);
crypto/openssl/crypto/http/http_client.c
579
n = BIO_gets(rctx->rbio, buf, rctx->buf_size);
crypto/openssl/crypto/http/http_client.c
714
n = BIO_gets(rctx->mem, buf, rctx->buf_size);
crypto/openssl/crypto/objects/obj_dat.c
735
i = BIO_gets(in, buf, 512);
crypto/openssl/crypto/pem/pem_lib.c
789
len = BIO_gets(bp, linebuf, LINESIZE);
crypto/openssl/crypto/pem/pem_lib.c
854
len = BIO_gets(bp, linebuf, LINESIZE);
crypto/openssl/crypto/txt_db/txt_db.c
62
BIO_gets(in, &(buf->data[offset]), size - offset);
crypto/openssl/demos/digest/BIO_f_md.c
105
if (BIO_gets(bio_digest, digest_value, digest_size) != digest_size) {
crypto/openssl/include/openssl/bio.h
747
int BIO_gets(BIO *bp, char *buf, int size);
crypto/openssl/include/openssl/core_dispatch.h
167
OSSL_CORE_MAKE_FUNC(int, BIO_gets, (OSSL_CORE_BIO *bio, char *buf, int size))
crypto/openssl/test/bio_core_test.c
33
return BIO_gets(bio->bio, buf, size);
crypto/openssl/test/bio_core_test.c
90
|| !TEST_int_gt(BIO_gets(cbio, buf, sizeof(buf)), 0)
crypto/openssl/test/bio_readbuffer_test.c
58
len = BIO_gets(in_bio, buf, sizeof(buf));
crypto/openssl/test/cmsapitest.c
430
if (!TEST_int_eq(BIO_gets(decryptbio, buf, sizeof(buf)), (int)strlen(msg))
crypto/openssl/test/cmsapitest.c
57
if (!TEST_int_eq(BIO_gets(outmsgbio, buf, sizeof(buf)), strlen(msg))
crypto/openssl/test/danetest.c
155
if (BIO_gets(f, buf, sizeof(buf)) <= 0)
crypto/openssl/test/http_test.c
216
res = TEST_int_eq(BIO_gets(rsp, rtext, sizeof(rtext)),
crypto/openssl/test/http_test.c
222
res = TEST_int_eq(BIO_gets(rsp, rtext, sizeof(rtext)),
crypto/openssl/test/quicapitest.c
519
&& BIO_gets(membio, buf, sizeof(buf)) > 0) {
crypto/openssl/test/testutil/compare.c
42
while (BIO_gets(membio, buf2, sizeof(buf2)) > 0)
crypto/openssl/test/testutil/compare.c
51
while (BIO_gets(file, buf1, sizeof(buf1)) > 0) {
crypto/openssl/test/testutil/compare.c
54
if (BIO_gets(membio, buf2, sizeof(buf2)) <= 0) {
crypto/openssl/test/testutil/stanza.c
53
while (BIO_gets(s->fp, tmpbuf, sizeof(tmpbuf))) {
crypto/openssl/test/testutil/stanza.c
92
for (s->numpairs = 0; BIO_gets(s->fp, buff, sizeof(buff));) {