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