Lines Matching defs:section
82 _CONF_get_section(const CONF *conf, const char *section)
86 if ((conf == NULL) || (section == NULL))
89 vv.section = (char *)section;
96 _CONF_get_section_values(const CONF *conf, const char *section)
100 v = _CONF_get_section(conf, section);
108 _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value)
113 ts = (STACK_OF(CONF_VALUE) *)section->value;
115 value->section = section->section;
131 _CONF_get_string(const CONF *conf, const char *section, const char *name)
138 if (section != NULL) {
140 vv.section = (char *)section;
145 vv.section = "default";
159 return (lh_strhash(v->section) << 2) ^ lh_strhash(v->name);
169 if (a->section != b->section) {
170 i = strcmp(a->section, b->section);
208 /* We now have only 'section' entries in the hash table.
241 free(a->section);
247 _CONF_new_section(CONF *conf, const char *section)
257 i = strlen(section) + 1;
258 if ((v->section = malloc(i)) == NULL)
261 memcpy(v->section, section, i);