Lines Matching refs:CONF_VALUE
19 static void value_free_hash(const CONF_VALUE *a, LHASH_OF(CONF_VALUE) *conf);
20 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 *v, vv; in _CONF_get_section()
36 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf, in STACK_OF() argument
39 CONF_VALUE *v; in STACK_OF()
43 return ((STACK_OF(CONF_VALUE) *)v->value); in STACK_OF()
48 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) in _CONF_add_string()
50 CONF_VALUE *v = NULL; in _CONF_add_string()
51 STACK_OF(CONF_VALUE) *ts; in _CONF_add_string()
53 ts = (STACK_OF(CONF_VALUE) *)section->value; in _CONF_add_string()
73 CONF_VALUE *v, vv; in _CONF_get_string()
102 static unsigned long conf_value_hash(const CONF_VALUE *v) in conf_value_hash()
107 static int conf_value_cmp(const CONF_VALUE *a, const CONF_VALUE *b) in conf_value_cmp()
139 typedef LHASH_OF(CONF_VALUE) LH_CONF_VALUE;
141 IMPLEMENT_LHASH_DOALL_ARG_CONST(CONF_VALUE, LH_CONF_VALUE);
161 static void value_free_hash(const CONF_VALUE *a, LHASH_OF(CONF_VALUE) *conf) in value_free_hash()
167 static void value_free_stack_doall(CONF_VALUE *a) in value_free_stack_doall()
169 CONF_VALUE *vv; in value_free_stack_doall()
170 STACK_OF(CONF_VALUE) *sk; in value_free_stack_doall()
176 sk = (STACK_OF(CONF_VALUE) *)a->value; in value_free_stack_doall()
189 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section) in _CONF_new_section()
191 STACK_OF(CONF_VALUE) *sk = NULL; in _CONF_new_section()
193 CONF_VALUE *v = NULL, *vv; in _CONF_new_section()