Lines Matching refs:fns
16 const OSSL_DISPATCH *fns,
26 const OSSL_DISPATCH *fns,
53 dispatch table I<fns>, with name identity I<name_id>.
115 const OSSL_DISPATCH *fns,
131 for (; fns->function_id != 0; fns++) {
132 switch (fns->function_id) {
134 foo->newctx = OSSL_FUNC_foo_newctx(fns);
137 foo->init = OSSL_FUNC_foo_init(fns);
140 foo->operate = OSSL_FUNC_foo_operate(fns);
143 foo->cleanctx = OSSL_FUNC_foo_cleanctx(fns);
146 foo->freectx = OSSL_FUNC_foo_freectx(fns);
174 static void *foo_from_algorithm(const OSSL_DISPATCH *fns,
177 return EVP_FOO_meth_from_algorithm(fns, prov);