/freebsd/crypto/openssl/crypto/bio/ |
H A D | bio_meth.c | 36 BIO_METHOD *BIO_meth_new(int type, const char *name) in BIO_meth_new() 38 BIO_METHOD *biom = OPENSSL_zalloc(sizeof(BIO_METHOD)); in BIO_meth_new() 50 void BIO_meth_free(BIO_METHOD *biom) in BIO_meth_free() 58 int (*BIO_meth_get_write(const BIO_METHOD *biom)) (BIO *, const char *, int) in BIO_meth_get_write() 63 int (*BIO_meth_get_write_ex(const BIO_METHOD *biom)) (BIO *, const char *, size_t, in BIO_meth_get_write_ex() 89 int BIO_meth_set_write(BIO_METHOD *biom, in BIO_meth_set_write() 97 int BIO_meth_set_write_ex(BIO_METHOD *biom, in BIO_meth_set_write_ex() 105 int (*BIO_meth_get_read(const BIO_METHOD *biom)) (BIO *, char *, int) in BIO_meth_get_read() 110 int (*BIO_meth_get_read_ex(const BIO_METHOD *biom)) (BIO *, char *, size_t, size_t *) in BIO_meth_get_read_ex() 135 int BIO_meth_set_read(BIO_METHOD *biom, in BIO_meth_set_read() [all …]
|
H A D | bss_null.c | 20 static const BIO_METHOD null_method = { 35 const BIO_METHOD *BIO_s_null(void) in BIO_s_null()
|
H A D | bss_fd.c | 34 const BIO_METHOD *BIO_s_fd(void) in BIO_s_fd() 60 static const BIO_METHOD methods_fdp = { 75 const BIO_METHOD *BIO_s_fd(void) in BIO_s_fd()
|
H A D | bf_null.c | 25 static const BIO_METHOD methods_nullf = { 40 const BIO_METHOD *BIO_f_null(void) in BIO_f_null()
|
H A D | bss_file.c | 42 static const BIO_METHOD methods_filep = { 104 const BIO_METHOD *BIO_s_file(void) in BIO_s_file() 405 static const BIO_METHOD methods_filep = { 420 const BIO_METHOD *BIO_s_file(void) in BIO_s_file()
|
H A D | bss_mem.c | 26 static const BIO_METHOD mem_method = { 41 static const BIO_METHOD secmem_method = { 72 const BIO_METHOD *BIO_s_mem(void) in BIO_s_mem() 77 const BIO_METHOD *BIO_s_secmem(void) in BIO_s_secmem()
|
H A D | bss_log.c | 87 static const BIO_METHOD methods_slg = { 102 const BIO_METHOD *BIO_s_log(void) in BIO_s_log() 413 const BIO_METHOD *BIO_s_log(void) in BIO_s_log()
|
H A D | bf_nbio.c | 34 static const BIO_METHOD methods_nbiof = { 49 const BIO_METHOD *BIO_f_nbio_test(void) in BIO_f_nbio_test()
|
H A D | bf_prefix.c | 25 static const BIO_METHOD prefix_meth = { 40 const BIO_METHOD *BIO_f_prefix(void) in BIO_f_prefix()
|
H A D | bss_core.c | 113 static const BIO_METHOD corebiometh = { 128 const BIO_METHOD *BIO_s_core(void) in BIO_s_core()
|
H A D | bss_sock.c | 38 static const BIO_METHOD methods_sockp = { 53 const BIO_METHOD *BIO_s_socket(void) in BIO_s_socket()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | BIO_meth_new.pod | 20 BIO_METHOD *BIO_meth_new(int type, const char *name); 22 void BIO_meth_free(BIO_METHOD *biom); 24 int (*BIO_meth_get_write_ex(const BIO_METHOD *biom))(BIO *, const char *, size_t, 26 int (*BIO_meth_get_write(const BIO_METHOD *biom))(BIO *, const char *, int); 27 int BIO_meth_set_write_ex(BIO_METHOD *biom, 29 int BIO_meth_set_write(BIO_METHOD *biom, 32 int (*BIO_meth_get_read_ex(const BIO_METHOD *biom))(BIO *, char *, size_t, size_t *); 33 int (*BIO_meth_get_read(const BIO_METHOD *biom))(BIO *, char *, int); 34 int BIO_meth_set_read_ex(BIO_METHOD *biom, 36 int BIO_meth_set_read(BIO_METHOD *biom, int (*read)(BIO *, char *, int)); [all …]
|
H A D | BIO_new.pod | 12 BIO *BIO_new_ex(OSSL_LIB_CTX *libctx, const BIO_METHOD *type); 13 BIO *BIO_new(const BIO_METHOD *type); 36 BIO_METHOD descriptions.
|
H A D | BIO_s_core.pod | 11 const BIO_METHOD *BIO_s_core(void); 37 BIO_s_core() return a core BIO B<BIO_METHOD> structure.
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | bio.h | 296 typedef struct bio_method_st BIO_METHOD; typedef 624 const BIO_METHOD *BIO_s_file(void); 630 BIO *BIO_new_ex(OSSL_LIB_CTX *libctx, const BIO_METHOD *method); 631 BIO *BIO_new(const BIO_METHOD *type); 669 const BIO_METHOD *BIO_s_mem(void); 670 const BIO_METHOD *BIO_s_secmem(void); 673 const BIO_METHOD *BIO_s_socket(void); 674 const BIO_METHOD *BIO_s_connect(void); 675 const BIO_METHOD *BIO_s_accept(void); 677 const BIO_METHOD *BIO_s_fd(void); [all …]
|
H A D | bio.h.in | 297 typedef struct bio_method_st BIO_METHOD; typedef 601 const BIO_METHOD *BIO_s_file(void); 607 BIO *BIO_new_ex(OSSL_LIB_CTX *libctx, const BIO_METHOD *method); 608 BIO *BIO_new(const BIO_METHOD *type); 646 const BIO_METHOD *BIO_s_mem(void); 647 const BIO_METHOD *BIO_s_secmem(void); 650 const BIO_METHOD *BIO_s_socket(void); 651 const BIO_METHOD *BIO_s_connect(void); 652 const BIO_METHOD *BIO_s_accept(void); 654 const BIO_METHOD *BIO_s_fd(void); [all …]
|
H A D | comp.h | 50 const BIO_METHOD *BIO_f_zlib(void);
|
/freebsd/crypto/openssl/providers/common/include/prov/ |
H A D | provider_ctx.h | 21 BIO_METHOD *corebiometh; 35 void ossl_prov_ctx_set0_core_bio_method(PROV_CTX *ctx, BIO_METHOD *corebiometh); 38 BIO_METHOD *ossl_prov_ctx_get0_core_bio_method(PROV_CTX *ctx);
|
/freebsd/contrib/ntp/sntp/libevent/ |
H A D | openssl-compat.h | 10 static inline BIO_METHOD *BIO_meth_new(int type, const char *name) in BIO_meth_new() 12 BIO_METHOD *biom = calloc(1, sizeof(BIO_METHOD)); in BIO_meth_new()
|
/freebsd/contrib/libevent/ |
H A D | openssl-compat.h | 10 static inline BIO_METHOD *BIO_meth_new(int type, const char *name) in BIO_meth_new() 12 BIO_METHOD *biom = calloc(1, sizeof(BIO_METHOD)); in BIO_meth_new()
|
/freebsd/crypto/openssl/test/helpers/ |
H A D | ssltestlib.h | 30 const BIO_METHOD *bio_f_tls_dump_filter(void); 33 const BIO_METHOD *bio_s_mempacket_test(void); 36 const BIO_METHOD *bio_s_always_retry(void);
|
/freebsd/crypto/openssl/providers/common/ |
H A D | provider_ctx.c | 36 void ossl_prov_ctx_set0_core_bio_method(PROV_CTX *ctx, BIO_METHOD *corebiometh) in ossl_prov_ctx_set0_core_bio_method() 56 BIO_METHOD *ossl_prov_ctx_get0_core_bio_method(PROV_CTX *ctx) in ossl_prov_ctx_get0_core_bio_method()
|
H A D | bio_prov.c | 206 BIO_METHOD *ossl_bio_prov_init_bio_method(void) in ossl_bio_prov_init_bio_method() 208 BIO_METHOD *corebiometh = NULL; in ossl_bio_prov_init_bio_method() 229 BIO_METHOD *corebiometh = ossl_prov_ctx_get0_core_bio_method(provctx); in ossl_bio_new_from_core_bio()
|
/freebsd/crypto/openssl/crypto/evp/ |
H A D | bio_md.c | 28 static const BIO_METHOD methods_md = { 43 const BIO_METHOD *BIO_f_md(void) in BIO_f_md()
|
/freebsd/crypto/openssl/test/ |
H A D | sslcorrupttest.c | 105 static BIO_METHOD *method_tls_corrupt = NULL; 108 static const BIO_METHOD *bio_f_tls_corrupt_filter(void) in bio_f_tls_corrupt_filter()
|