Lines Matching full:meth
84 int CONF_set_default_method(CONF_METHOD *meth)
86 default_CONF_method = meth;
228 CONF *NCONF_new(CONF_METHOD *meth)
232 if (meth == NULL)
233 meth = NCONF_default();
235 ret = meth->create(meth);
249 conf->meth->destroy(conf);
256 conf->meth->destroy_data(conf);
267 return conf->meth->load(conf, file, eline);
294 return conf->meth->load_bio(conf, bp, eline);
350 for (*result = 0;conf->meth->is_number(conf, *str);)
352 *result = (*result)*10 + conf->meth->to_int(conf, *str);
382 return conf->meth->dump(conf, out);