Lines Matching refs:CONF_VALUE

20 static void value_free_hash(const CONF_VALUE *a, LHASH_OF(CONF_VALUE) *conf);
21 static void value_free_stack_doall(CONF_VALUE *a);
23 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section) in _CONF_get_section()
25 CONF_VALUE vv; in _CONF_get_section()
34 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf, in STACK_OF() argument
37 CONF_VALUE *v; in STACK_OF()
42 return ((STACK_OF(CONF_VALUE) *)v->value); in STACK_OF()
45 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) in _CONF_add_string()
47 CONF_VALUE *v = NULL; in _CONF_add_string()
48 STACK_OF(CONF_VALUE) *ts; in _CONF_add_string()
50 ts = (STACK_OF(CONF_VALUE) *)section->value; in _CONF_add_string()
69 CONF_VALUE *v, vv; in _CONF_get_string()
98 static unsigned long conf_value_hash(const CONF_VALUE *v) in conf_value_hash()
103 static int conf_value_cmp(const CONF_VALUE *a, const CONF_VALUE *b) in conf_value_cmp()
132 typedef LHASH_OF(CONF_VALUE) LH_CONF_VALUE;
134 IMPLEMENT_LHASH_DOALL_ARG_CONST(CONF_VALUE, LH_CONF_VALUE);
158 static void value_free_hash(const CONF_VALUE *a, LHASH_OF(CONF_VALUE) *conf) in value_free_hash()
164 static void value_free_stack_doall(CONF_VALUE *a) in value_free_stack_doall()
166 CONF_VALUE *vv; in value_free_stack_doall()
167 STACK_OF(CONF_VALUE) *sk; in value_free_stack_doall()
173 sk = (STACK_OF(CONF_VALUE) *)a->value; in value_free_stack_doall()
185 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section) in _CONF_new_section()
187 STACK_OF(CONF_VALUE) *sk = NULL; in _CONF_new_section()
189 CONF_VALUE *v = NULL, *vv; in _CONF_new_section()