Searched refs:bgets (Results 1 – 6 of 6) sorted by relevance
/third_party/openssl/crypto/bio/ |
D | bio_meth.c | 165 return biom->bgets; in BIO_meth_get_gets() 169 int (*bgets) (BIO *, char *, int)) in BIO_meth_set_gets() 171 biom->bgets = bgets; in BIO_meth_set_gets()
|
D | bio_lib.c | 437 if ((b == NULL) || (b->method == NULL) || (b->method->bgets == NULL)) { in BIO_gets() 458 ret = b->method->bgets(b, buf, size); in BIO_gets()
|
/third_party/openssl/include/internal/ |
D | bio.h | 20 int (*bgets) (BIO *, char *, int); member
|
/third_party/boringssl/src/crypto/bio/ |
D | bio.c | 144 if (bio == NULL || bio->method == NULL || bio->method->bgets == NULL) { in BIO_gets() 155 int ret = bio->method->bgets(bio, buf, len); in BIO_gets() 675 method->bgets = gets; in BIO_meth_set_gets()
|
/third_party/ffmpeg/libavformat/ |
D | tls_openssl.c | 228 .bgets = NULL,
|
/third_party/boringssl/src/include/openssl/ |
D | bio.h | 811 int (*bgets)(BIO *, char *, int); member
|