Lines Matching refs:meth
40 int CONF_set_default_method(CONF_METHOD *meth) in CONF_set_default_method() argument
42 default_CONF_method = meth; in CONF_set_default_method()
182 CONF *NCONF_new_ex(OSSL_LIB_CTX *libctx, CONF_METHOD *meth) in NCONF_new_ex() argument
186 if (meth == NULL) in NCONF_new_ex()
187 meth = NCONF_default(); in NCONF_new_ex()
189 ret = meth->create(meth); in NCONF_new_ex()
199 CONF *NCONF_new(CONF_METHOD *meth) in NCONF_new() argument
201 return NCONF_new_ex(NULL, meth); in NCONF_new()
208 conf->meth->destroy(conf); in NCONF_free()
215 conf->meth->destroy_data(conf); in NCONF_free_data()
257 return conf->meth->load(conf, file, eline); in NCONF_load()
282 return conf->meth->load_bio(conf, bp, eline); in NCONF_load_bio()
349 if (conf->meth->is_number != NULL) in NCONF_get_number_e()
350 is_number = conf->meth->is_number; in NCONF_get_number_e()
351 if (conf->meth->to_int != NULL) in NCONF_get_number_e()
352 to_int = conf->meth->to_int; in NCONF_get_number_e()
402 return conf->meth->dump(conf, out); in NCONF_dump_bio()