Lines Matching refs:BIO_METHOD
72 BIO *BIO_new(const BIO_METHOD *method) { in BIO_new()
634 BIO_METHOD *BIO_meth_new(int type, const char *name) { in BIO_meth_new()
635 BIO_METHOD *method = OPENSSL_malloc(sizeof(BIO_METHOD)); in BIO_meth_new()
639 OPENSSL_memset(method, 0, sizeof(BIO_METHOD)); in BIO_meth_new()
645 void BIO_meth_free(BIO_METHOD *method) { in BIO_meth_free()
649 int BIO_meth_set_create(BIO_METHOD *method, in BIO_meth_set_create()
655 int BIO_meth_set_destroy(BIO_METHOD *method, in BIO_meth_set_destroy()
661 int BIO_meth_set_write(BIO_METHOD *method, in BIO_meth_set_write()
667 int BIO_meth_set_read(BIO_METHOD *method, in BIO_meth_set_read()
673 int BIO_meth_set_gets(BIO_METHOD *method, in BIO_meth_set_gets()
679 int BIO_meth_set_ctrl(BIO_METHOD *method, in BIO_meth_set_ctrl()
697 int BIO_meth_set_puts(BIO_METHOD *method, int (*puts)(BIO *, const char *)) { in BIO_meth_set_puts()