Home
last modified time | relevance | path

Searched refs:bgets (Results 1 – 6 of 6) sorted by relevance

/third_party/openssl/crypto/bio/
Dbio_meth.c165 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()
Dbio_lib.c437 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/
Dbio.h20 int (*bgets) (BIO *, char *, int); member
/third_party/boringssl/src/crypto/bio/
Dbio.c144 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/
Dtls_openssl.c228 .bgets = NULL,
/third_party/boringssl/src/include/openssl/
Dbio.h811 int (*bgets)(BIO *, char *, int); member