Lines Matching defs:value
60 char *value;
74 static int module_run(const CONF *cnf, const char *name, const char *value,
80 static int module_init(CONF_MODULE *pmod, const char *name, const char *value,
83 const char *value);
165 ret = module_run(cnf, vl->name, vl->value, flags);
167 vl->name, vl->value, ret);
243 static int module_run(const CONF *cnf, const char *name, const char *value,
256 md = module_load_dso(cnf, name, value);
266 ret = module_init(md, name, value, cnf);
271 "module=%s, value=%s retcode=%-8d",
272 name, value, ret);
280 const char *name, const char *value)
290 path = _CONF_get_string(cnf, value, "path");
399 static int module_init(CONF_MODULE *pmod, const char *name, const char *value,
413 imod->value = OPENSSL_strdup(value);
416 if (!imod->name || !imod->value)
463 OPENSSL_free(imod->value);
556 OPENSSL_free(imod->value);
586 return md->value;