Lines Matching refs:corebiometh
208 BIO_METHOD *corebiometh = NULL; in ossl_bio_prov_init_bio_method() local
210 corebiometh = BIO_meth_new(BIO_TYPE_CORE_TO_PROV, "BIO to Core filter"); in ossl_bio_prov_init_bio_method()
211 if (corebiometh == NULL in ossl_bio_prov_init_bio_method()
212 || !BIO_meth_set_write_ex(corebiometh, bio_core_write_ex) in ossl_bio_prov_init_bio_method()
213 || !BIO_meth_set_read_ex(corebiometh, bio_core_read_ex) in ossl_bio_prov_init_bio_method()
214 || !BIO_meth_set_puts(corebiometh, bio_core_puts) in ossl_bio_prov_init_bio_method()
215 || !BIO_meth_set_gets(corebiometh, bio_core_gets) in ossl_bio_prov_init_bio_method()
216 || !BIO_meth_set_ctrl(corebiometh, bio_core_ctrl) in ossl_bio_prov_init_bio_method()
217 || !BIO_meth_set_create(corebiometh, bio_core_new) in ossl_bio_prov_init_bio_method()
218 || !BIO_meth_set_destroy(corebiometh, bio_core_free)) { in ossl_bio_prov_init_bio_method()
219 BIO_meth_free(corebiometh); in ossl_bio_prov_init_bio_method()
223 return corebiometh; 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() local
231 if (corebiometh == NULL) in ossl_bio_new_from_core_bio()
234 if ((outbio = BIO_new(corebiometh)) == NULL) in ossl_bio_new_from_core_bio()