• Home
  • Raw
  • Download

Lines Matching defs:config

66   config_t *config = osi_calloc(sizeof(config_t));  in config_new_empty()  local
84 config_t *config = config_new_empty(); in config_new() local
128 void config_free(config_t *config) { in config_free()
136 bool config_has_section(const config_t *config, const char *section) { in config_has_section()
143 bool config_has_key(const config_t *config, const char *section, const char *key) { in config_has_key()
151 int config_get_int(const config_t *config, const char *section, const char *key, int def_value) { in config_get_int()
165 bool config_get_bool(const config_t *config, const char *section, const char *key, bool def_value) { in config_get_bool()
182 const char *config_get_string(const config_t *config, const char *section, const char *key, const c… in config_get_string()
194 void config_set_int(config_t *config, const char *section, const char *key, int value) { in config_set_int()
204 void config_set_bool(config_t *config, const char *section, const char *key, bool value) { in config_set_bool()
212 void config_set_string(config_t *config, const char *section, const char *key, const char *value) { in config_set_string()
232 bool config_remove_section(config_t *config, const char *section) { in config_remove_section()
243 bool config_remove_key(config_t *config, const char *section, const char *key) { in config_remove_key()
256 const config_section_node_t *config_section_begin(const config_t *config) { in config_section_begin()
261 const config_section_node_t *config_section_end(const config_t *config) { in config_section_end()
278 bool config_save(const config_t *config, const char *filename) { in config_save()
409 static bool config_parse(FILE *fp, config_t *config) { in config_parse()
466 static section_t *section_find(const config_t *config, const char *section) { in section_find()
494 static entry_t *entry_find(const config_t *config, const char *section, const char *key) { in entry_find()