Lines Matching defs:meth
81 NCONF_new(const CONF_METHOD *meth)
85 if (meth == NULL)
86 meth = NCONF_default();
88 ret = meth->create(meth);
103 conf->meth->destroy(conf);
115 return conf->meth->load(conf, file, eline);
127 return conf->meth->load_bio(conf, bp, eline);
185 for (*result = 0; conf->meth->is_number(conf, *str); ) {
186 *result = (*result) * 10 + conf->meth->to_int(conf, *str);