Lines Matching refs:params

22     OSSL_PARAM *params = NULL, *params_blt = NULL, *p1 = NULL, *p;  in template_public_test()  local
53 params = params_blt; in template_public_test()
56 params = OSSL_PARAM_merge(params_blt, params_empty); in template_public_test()
59 params = OSSL_PARAM_dup(params_blt); in template_public_test()
63 params = OSSL_PARAM_dup(p1); in template_public_test()
67 params = OSSL_PARAM_merge(p1, params_empty); in template_public_test()
71 if (!TEST_ptr(p = OSSL_PARAM_locate(params, "i")) in template_public_test()
78 || !TEST_ptr(p = OSSL_PARAM_locate(params, "i32")) in template_public_test()
85 || !TEST_ptr(p = OSSL_PARAM_locate(params, "i64")) in template_public_test()
92 || !TEST_ptr(p = OSSL_PARAM_locate(params, "l")) in template_public_test()
99 || !TEST_ptr(p = OSSL_PARAM_locate(params, "t")) in template_public_test()
106 || !TEST_ptr(p = OSSL_PARAM_locate(params, "d")) in template_public_test()
113 || !TEST_ptr(p = OSSL_PARAM_locate(params, "utf8_s")) in template_public_test()
118 || !TEST_ptr(p = OSSL_PARAM_locate(params, "utf8_p")) in template_public_test()
122 || !TEST_ptr(p = OSSL_PARAM_locate(params, "bignumber")) in template_public_test()
131 if (params != params_blt) in template_public_test()
132 OPENSSL_free(params); in template_public_test()
149 OSSL_PARAM *params = NULL, *params_blt = NULL, *p1 = NULL, *p; in template_private_test() local
184 params = params_blt; in template_private_test()
187 params = OSSL_PARAM_merge(params_blt, params_empty); in template_private_test()
190 params = OSSL_PARAM_dup(params_blt); in template_private_test()
194 params = OSSL_PARAM_dup(p1); in template_private_test()
198 params = OSSL_PARAM_merge(p1, params_empty); in template_private_test()
202 if (!TEST_ptr(p = OSSL_PARAM_locate(params, "i")) in template_private_test()
210 || !TEST_ptr(p = OSSL_PARAM_locate(params, "i32")) in template_private_test()
218 || !TEST_ptr(p = OSSL_PARAM_locate(params, "i64")) in template_private_test()
226 || !TEST_ptr(p = OSSL_PARAM_locate(params, "l")) in template_private_test()
234 || !TEST_ptr(p = OSSL_PARAM_locate(params, "st")) in template_private_test()
242 || !TEST_ptr(p = OSSL_PARAM_locate(params, "oct_s")) in template_private_test()
248 || !TEST_ptr(p = OSSL_PARAM_locate(params, "oct_p")) in template_private_test()
255 || !TEST_ptr(p = OSSL_PARAM_locate(params, "bignumber")) in template_private_test()
266 if (params != params_blt) in template_private_test()
267 OSSL_PARAM_free(params); in template_private_test()
282 OSSL_PARAM *params = NULL; in builder_limit_test() local
295 if (!TEST_ptr(params = OSSL_PARAM_BLD_to_param(bld))) in builder_limit_test()
298 for (i = 0; params[i].key != NULL; i++); in builder_limit_test()
303 OSSL_PARAM_free(params); in builder_limit_test()
304 params = NULL; in builder_limit_test()
307 || !TEST_ptr(params = OSSL_PARAM_BLD_to_param(bld))) in builder_limit_test()
310 for (i = 0; params[i].key != NULL; i++); in builder_limit_test()
315 OSSL_PARAM_free(params); in builder_limit_test()
326 OSSL_PARAM *params = NULL, *params_blt = NULL, *params2_blt = NULL, *p; in builder_merge_test() local
360 if (!TEST_ptr(params = OSSL_PARAM_merge(params_blt, params2_blt))) in builder_merge_test()
363 if (!TEST_ptr(p = OSSL_PARAM_locate(params, "i")) in builder_merge_test()
370 || !TEST_ptr(p = OSSL_PARAM_locate(params, "i32")) in builder_merge_test()
377 || !TEST_ptr(p = OSSL_PARAM_locate(params, "i64")) in builder_merge_test()
384 || !TEST_ptr(p = OSSL_PARAM_locate(params, "l")) in builder_merge_test()
391 || !TEST_ptr(p = OSSL_PARAM_locate(params, "st")) in builder_merge_test()
398 || !TEST_ptr(p = OSSL_PARAM_locate(params, "oct_s")) in builder_merge_test()
403 || !TEST_ptr(p = OSSL_PARAM_locate(params, "oct_p")) in builder_merge_test()
408 || !TEST_ptr(p = OSSL_PARAM_locate(params, "bignumber_pub")) in builder_merge_test()
413 || !TEST_ptr(p = OSSL_PARAM_locate(params, "bignumber_priv")) in builder_merge_test()
421 OSSL_PARAM_free(params); in builder_merge_test()