Symbol: BIO_METHOD
crypto/libressl/crypto/asn1/bio_asn1.c
129
static const BIO_METHOD methods_asn1 = {
crypto/libressl/crypto/asn1/bio_asn1.c
142
const BIO_METHOD *
crypto/libressl/crypto/bio/bf_buff.c
78
static const BIO_METHOD methods_buffer = {
crypto/libressl/crypto/bio/bf_buff.c
91
const BIO_METHOD *
crypto/libressl/crypto/bio/bf_nbio.c
85
static const BIO_METHOD methods_nbiof = {
crypto/libressl/crypto/bio/bf_nbio.c
98
const BIO_METHOD *
crypto/libressl/crypto/bio/bio_lib.c
134
BIO_new(const BIO_METHOD *method)
crypto/libressl/crypto/bio/bio_lib.c
152
BIO_set(BIO *bio, const BIO_METHOD *method)
crypto/libressl/crypto/bio/bio_local.h
78
const BIO_METHOD *method;
crypto/libressl/crypto/bio/bio_meth.c
103
BIO_meth_set_ctrl(BIO_METHOD *biom, long (*ctrl)(BIO *, int, long, void *))
crypto/libressl/crypto/bio/bio_meth.c
110
(*BIO_meth_get_create(const BIO_METHOD *biom))(BIO *)
crypto/libressl/crypto/bio/bio_meth.c
116
BIO_meth_set_create(BIO_METHOD *biom, int (*create)(BIO *))
crypto/libressl/crypto/bio/bio_meth.c
123
(*BIO_meth_get_destroy(const BIO_METHOD *biom))(BIO *)
crypto/libressl/crypto/bio/bio_meth.c
129
BIO_meth_set_destroy(BIO_METHOD *biom, int (*destroy)(BIO *))
crypto/libressl/crypto/bio/bio_meth.c
136
(*BIO_meth_get_callback_ctrl(const BIO_METHOD *biom))(BIO *, int, BIO_info_cb *)
crypto/libressl/crypto/bio/bio_meth.c
142
BIO_meth_set_callback_ctrl(BIO_METHOD *biom,
crypto/libressl/crypto/bio/bio_meth.c
24
BIO_METHOD *
crypto/libressl/crypto/bio/bio_meth.c
27
BIO_METHOD *biom;
crypto/libressl/crypto/bio/bio_meth.c
39
BIO_meth_free(BIO_METHOD *biom)
crypto/libressl/crypto/bio/bio_meth.c
45
(*BIO_meth_get_write(const BIO_METHOD *biom))(BIO *, const char *, int)
crypto/libressl/crypto/bio/bio_meth.c
51
BIO_meth_set_write(BIO_METHOD *biom, int (*write)(BIO *, const char *, int))
crypto/libressl/crypto/bio/bio_meth.c
58
(*BIO_meth_get_read(const BIO_METHOD *biom))(BIO *, char *, int)
crypto/libressl/crypto/bio/bio_meth.c
64
BIO_meth_set_read(BIO_METHOD *biom, int (*read)(BIO *, char *, int))
crypto/libressl/crypto/bio/bio_meth.c
71
(*BIO_meth_get_puts(const BIO_METHOD *biom))(BIO *, const char *)
crypto/libressl/crypto/bio/bio_meth.c
77
BIO_meth_set_puts(BIO_METHOD *biom, int (*puts)(BIO *, const char *))
crypto/libressl/crypto/bio/bio_meth.c
84
(*BIO_meth_get_gets(const BIO_METHOD *biom))(BIO *, char *, int)
crypto/libressl/crypto/bio/bio_meth.c
90
BIO_meth_set_gets(BIO_METHOD *biom, int (*gets)(BIO *, char *, int))
crypto/libressl/crypto/bio/bio_meth.c
97
(*BIO_meth_get_ctrl(const BIO_METHOD *biom))(BIO *, int, long, void *)
crypto/libressl/crypto/bio/bss_acpt.c
105
static const BIO_METHOD methods_acceptp = {
crypto/libressl/crypto/bio/bss_acpt.c
116
const BIO_METHOD *
crypto/libressl/crypto/bio/bss_conn.c
111
static const BIO_METHOD methods_connectp = {
crypto/libressl/crypto/bio/bss_conn.c
324
const BIO_METHOD *
crypto/libressl/crypto/bio/bss_dgram.c
117
const BIO_METHOD *
crypto/libressl/crypto/bio/bss_dgram.c
91
static const BIO_METHOD methods_dgramp = {
crypto/libressl/crypto/bio/bss_fd.c
79
static const BIO_METHOD methods_fdp = {
crypto/libressl/crypto/bio/bss_fd.c
91
const BIO_METHOD *
crypto/libressl/crypto/bio/bss_file.c
103
static const BIO_METHOD methods_filep = {
crypto/libressl/crypto/bio/bss_file.c
153
const BIO_METHOD *
crypto/libressl/crypto/bio/bss_mem.c
115
const BIO_METHOD *
crypto/libressl/crypto/bio/bss_mem.c
98
static const BIO_METHOD mem_method = {
crypto/libressl/crypto/bio/bss_null.c
75
static const BIO_METHOD null_method = {
crypto/libressl/crypto/bio/bss_null.c
87
const BIO_METHOD *
crypto/libressl/crypto/bio/bss_sock.c
78
static const BIO_METHOD methods_sockp = {
crypto/libressl/crypto/bio/bss_sock.c
89
const BIO_METHOD *
crypto/libressl/crypto/evp/bio_b64.c
109
const BIO_METHOD *
crypto/libressl/crypto/evp/bio_b64.c
97
static const BIO_METHOD methods_b64 = {
crypto/libressl/crypto/evp/bio_enc.c
104
const BIO_METHOD *
crypto/libressl/crypto/evp/bio_enc.c
93
static const BIO_METHOD methods_enc = {
crypto/libressl/crypto/evp/bio_md.c
80
static const BIO_METHOD methods_md = {
crypto/libressl/crypto/evp/bio_md.c
92
const BIO_METHOD *
crypto/libressl/include/openssl/asn1.h
927
const BIO_METHOD *BIO_f_asn1(void);
crypto/libressl/include/openssl/bio.h
291
BIO_METHOD *BIO_meth_new(int type, const char *name);
crypto/libressl/include/openssl/bio.h
292
void BIO_meth_free(BIO_METHOD *biom);
crypto/libressl/include/openssl/bio.h
293
int (*BIO_meth_get_write(const BIO_METHOD *biom))(BIO *, const char *, int);
crypto/libressl/include/openssl/bio.h
294
int BIO_meth_set_write(BIO_METHOD *biom,
crypto/libressl/include/openssl/bio.h
296
int (*BIO_meth_get_read(const BIO_METHOD *biom))(BIO *, char *, int);
crypto/libressl/include/openssl/bio.h
297
int BIO_meth_set_read(BIO_METHOD *biom, int (*read)(BIO *, char *, int));
crypto/libressl/include/openssl/bio.h
298
int (*BIO_meth_get_puts(const BIO_METHOD *biom))(BIO *, const char *);
crypto/libressl/include/openssl/bio.h
299
int BIO_meth_set_puts(BIO_METHOD *biom, int (*puts)(BIO *, const char *));
crypto/libressl/include/openssl/bio.h
300
int (*BIO_meth_get_gets(const BIO_METHOD *biom))(BIO *, char *, int);
crypto/libressl/include/openssl/bio.h
301
int BIO_meth_set_gets(BIO_METHOD *biom, int (*gets)(BIO *, char *, int));
crypto/libressl/include/openssl/bio.h
302
long (*BIO_meth_get_ctrl(const BIO_METHOD *biom))(BIO *, int, long, void *);
crypto/libressl/include/openssl/bio.h
303
int BIO_meth_set_ctrl(BIO_METHOD *biom, long (*ctrl)(BIO *, int, long, void *));
crypto/libressl/include/openssl/bio.h
304
int (*BIO_meth_get_create(const BIO_METHOD *biom))(BIO *);
crypto/libressl/include/openssl/bio.h
305
int BIO_meth_set_create(BIO_METHOD *biom, int (*create)(BIO *));
crypto/libressl/include/openssl/bio.h
306
int (*BIO_meth_get_destroy(const BIO_METHOD *biom))(BIO *);
crypto/libressl/include/openssl/bio.h
307
int BIO_meth_set_destroy(BIO_METHOD *biom, int (*destroy)(BIO *));
crypto/libressl/include/openssl/bio.h
308
long (*BIO_meth_get_callback_ctrl(const BIO_METHOD *biom))(BIO *, int, BIO_info_cb *);
crypto/libressl/include/openssl/bio.h
309
int BIO_meth_set_callback_ctrl(BIO_METHOD *biom,
crypto/libressl/include/openssl/bio.h
553
const BIO_METHOD *BIO_s_file(void);
crypto/libressl/include/openssl/bio.h
556
BIO *BIO_new(const BIO_METHOD *type);
crypto/libressl/include/openssl/bio.h
557
int BIO_set(BIO *a, const BIO_METHOD *type);
crypto/libressl/include/openssl/bio.h
598
const BIO_METHOD *BIO_s_mem(void);
crypto/libressl/include/openssl/bio.h
600
const BIO_METHOD *BIO_s_socket(void);
crypto/libressl/include/openssl/bio.h
601
const BIO_METHOD *BIO_s_connect(void);
crypto/libressl/include/openssl/bio.h
602
const BIO_METHOD *BIO_s_accept(void);
crypto/libressl/include/openssl/bio.h
603
const BIO_METHOD *BIO_s_fd(void);
crypto/libressl/include/openssl/bio.h
604
const BIO_METHOD *BIO_s_log(void);
crypto/libressl/include/openssl/bio.h
605
const BIO_METHOD *BIO_s_bio(void);
crypto/libressl/include/openssl/bio.h
606
const BIO_METHOD *BIO_s_null(void);
crypto/libressl/include/openssl/bio.h
607
const BIO_METHOD *BIO_f_null(void);
crypto/libressl/include/openssl/bio.h
608
const BIO_METHOD *BIO_f_buffer(void);
crypto/libressl/include/openssl/bio.h
609
const BIO_METHOD *BIO_f_nbio_test(void);
crypto/libressl/include/openssl/bio.h
611
const BIO_METHOD *BIO_s_datagram(void);
crypto/libressl/include/openssl/comp.h
24
BIO_METHOD *BIO_f_zlib(void);
crypto/libressl/include/openssl/evp.h
560
const BIO_METHOD *BIO_f_md(void);
crypto/libressl/include/openssl/evp.h
561
const BIO_METHOD *BIO_f_base64(void);
crypto/libressl/include/openssl/evp.h
562
const BIO_METHOD *BIO_f_cipher(void);
crypto/libressl/include/openssl/ssl.h
1113
const BIO_METHOD *BIO_f_ssl(void);
crypto/libressl/ssl/bio_ssl.c
101
const BIO_METHOD *
crypto/libressl/ssl/bio_ssl.c
89
static const BIO_METHOD methods_sslp = {
crypto/libressl/tls/tls_bio_cb.c
140
const BIO_METHOD *bio_cb;
crypto/libressl/tls/tls_bio_cb.c
32
static BIO_METHOD *bio_cb_method;
crypto/libressl/tls/tls_bio_cb.c
39
BIO_METHOD *bio_method;
crypto/libressl/tls/tls_bio_cb.c
56
static BIO_METHOD *