Lines Matching refs:fns
203 const OSSL_DISPATCH *fns = algodef->implementation; in ossl_decoder_from_algorithm() local
220 for (; fns->function_id != 0; fns++) { in ossl_decoder_from_algorithm()
221 switch (fns->function_id) { in ossl_decoder_from_algorithm()
224 decoder->newctx = OSSL_FUNC_decoder_newctx(fns); in ossl_decoder_from_algorithm()
228 decoder->freectx = OSSL_FUNC_decoder_freectx(fns); in ossl_decoder_from_algorithm()
233 OSSL_FUNC_decoder_get_params(fns); in ossl_decoder_from_algorithm()
238 OSSL_FUNC_decoder_gettable_params(fns); in ossl_decoder_from_algorithm()
243 OSSL_FUNC_decoder_set_ctx_params(fns); in ossl_decoder_from_algorithm()
248 OSSL_FUNC_decoder_settable_ctx_params(fns); in ossl_decoder_from_algorithm()
253 OSSL_FUNC_decoder_does_selection(fns); in ossl_decoder_from_algorithm()
257 decoder->decode = OSSL_FUNC_decoder_decode(fns); in ossl_decoder_from_algorithm()
261 decoder->export_object = OSSL_FUNC_decoder_export_object(fns); in ossl_decoder_from_algorithm()