Home
last modified time | relevance | path

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

/netbsd/crypto/external/bsd/openssl.old/dist/crypto/bio/
H A 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()
H A 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()
/netbsd/crypto/external/bsd/openssl/dist/crypto/bio/
H A 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()
H A Dbio_lib.c459 if (b->method == NULL || b->method->bgets == NULL) { in BIO_gets()
480 ret = b->method->bgets(b, buf, size); in BIO_gets()
/netbsd/crypto/external/bsd/openssl.old/dist/include/internal/
H A Dbio.h20 int (*bgets) (BIO *, char *, int); member
/netbsd/crypto/external/bsd/openssl/dist/include/internal/
H A Dbio.h25 int (*bgets) (BIO *, char *, int); member
/netbsd/external/bsd/openldap/dist/libraries/libldap/
H A Dtls_o.c163 #define BIO_meth_set_gets(m, f) (m)->bgets = (f)