Lines Matching refs:funcname
74 #define KDF_NEWCTX(funcname, kdfname) \ argument
75 static void *kdf_##funcname##_newctx(void *provctx) \
200 #define KDF_SETTABLE_CTX_PARAMS(funcname, kdfname) \ argument
201 static const OSSL_PARAM *kdf_##funcname##_settable_ctx_params(void *vpkdfctx, \
228 #define KDF_GETTABLE_CTX_PARAMS(funcname, kdfname) \ argument
229 static const OSSL_PARAM *kdf_##funcname##_gettable_ctx_params(void *vpkdfctx, \
239 #define KDF_KEYEXCH_FUNCTIONS(funcname) \ argument
240 const OSSL_DISPATCH ossl_kdf_##funcname##_keyexch_functions[] = { \
241 { OSSL_FUNC_KEYEXCH_NEWCTX, (void (*)(void))kdf_##funcname##_newctx }, \
249 (void (*)(void))kdf_##funcname##_settable_ctx_params }, \
251 (void (*)(void))kdf_##funcname##_gettable_ctx_params }, \