Lines Matching refs:fns
26 int ossl_prov_bio_from_dispatch(const OSSL_DISPATCH *fns)
28 for (; fns->function_id != 0; fns++) {
29 switch (fns->function_id) {
32 c_bio_new_file = OSSL_FUNC_BIO_new_file(fns);
36 c_bio_new_membuf = OSSL_FUNC_BIO_new_membuf(fns);
40 c_bio_read_ex = OSSL_FUNC_BIO_read_ex(fns);
44 c_bio_write_ex = OSSL_FUNC_BIO_write_ex(fns);
48 c_bio_gets = OSSL_FUNC_BIO_gets(fns);
52 c_bio_puts = OSSL_FUNC_BIO_puts(fns);
56 c_bio_ctrl = OSSL_FUNC_BIO_ctrl(fns);
60 c_bio_up_ref = OSSL_FUNC_BIO_up_ref(fns);
64 c_bio_free = OSSL_FUNC_BIO_free(fns);
68 c_bio_vprintf = OSSL_FUNC_BIO_vprintf(fns);