Lines Matching refs:NULL

15 static OSSL_FUNC_BIO_new_file_fn *c_bio_new_file = NULL;
16 static OSSL_FUNC_BIO_new_membuf_fn *c_bio_new_membuf = NULL;
17 static OSSL_FUNC_BIO_read_ex_fn *c_bio_read_ex = NULL;
18 static OSSL_FUNC_BIO_write_ex_fn *c_bio_write_ex = NULL;
19 static OSSL_FUNC_BIO_gets_fn *c_bio_gets = NULL;
20 static OSSL_FUNC_BIO_puts_fn *c_bio_puts = NULL;
21 static OSSL_FUNC_BIO_ctrl_fn *c_bio_ctrl = NULL;
22 static OSSL_FUNC_BIO_up_ref_fn *c_bio_up_ref = NULL;
23 static OSSL_FUNC_BIO_free_fn *c_bio_free = NULL;
24 static OSSL_FUNC_BIO_vprintf_fn *c_bio_vprintf = NULL;
31 if (c_bio_new_file == NULL) in ossl_prov_bio_from_dispatch()
35 if (c_bio_new_membuf == NULL) in ossl_prov_bio_from_dispatch()
39 if (c_bio_read_ex == NULL) in ossl_prov_bio_from_dispatch()
43 if (c_bio_write_ex == NULL) in ossl_prov_bio_from_dispatch()
47 if (c_bio_gets == NULL) in ossl_prov_bio_from_dispatch()
51 if (c_bio_puts == NULL) in ossl_prov_bio_from_dispatch()
55 if (c_bio_ctrl == NULL) in ossl_prov_bio_from_dispatch()
59 if (c_bio_up_ref == NULL) in ossl_prov_bio_from_dispatch()
63 if (c_bio_free == NULL) in ossl_prov_bio_from_dispatch()
67 if (c_bio_vprintf == NULL) in ossl_prov_bio_from_dispatch()
78 if (c_bio_new_file == NULL) in ossl_prov_bio_new_file()
79 return NULL; in ossl_prov_bio_new_file()
85 if (c_bio_new_membuf == NULL) in ossl_prov_bio_new_membuf()
86 return NULL; in ossl_prov_bio_new_membuf()
93 if (c_bio_read_ex == NULL) in ossl_prov_bio_read_ex()
101 if (c_bio_write_ex == NULL) in ossl_prov_bio_write_ex()
108 if (c_bio_gets == NULL) in ossl_prov_bio_gets()
115 if (c_bio_puts == NULL) in ossl_prov_bio_puts()
122 if (c_bio_ctrl == NULL) in ossl_prov_bio_ctrl()
129 if (c_bio_up_ref == NULL) in ossl_prov_bio_up_ref()
136 if (c_bio_free == NULL) in ossl_prov_bio_free()
143 if (c_bio_vprintf == NULL) in ossl_prov_bio_vprintf()
208 BIO_METHOD *corebiometh = NULL; in ossl_bio_prov_init_bio_method()
211 if (corebiometh == NULL in ossl_bio_prov_init_bio_method()
220 return NULL; in ossl_bio_prov_init_bio_method()
231 if (corebiometh == NULL) in ossl_bio_new_from_core_bio()
232 return NULL; in ossl_bio_new_from_core_bio()
234 if ((outbio = BIO_new(corebiometh)) == NULL) in ossl_bio_new_from_core_bio()
235 return NULL; in ossl_bio_new_from_core_bio()
238 return NULL; in ossl_bio_new_from_core_bio()