Home
last modified time | relevance | path

Searched refs:def_value (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-3.7.0/components/bt/common/osi/include/osi/
Dconfig.h69 int config_get_int(const config_t *config, const char *section, const char *key, int def_value);
74 bool config_get_bool(const config_t *config, const char *section, const char *key, bool def_value);
80 …ig_get_string(const config_t *config, const char *section, const char *key, const char *def_value);
/hal_espressif-3.7.0/components/bt/common/osi/
Dconfig.c148 int config_get_int(const config_t *config, const char *section, const char *key, int def_value) in config_get_int() argument
156 return def_value; in config_get_int()
161 return (*endptr == '\0') ? ret : def_value; in config_get_int()
164 bool config_get_bool(const config_t *config, const char *section, const char *key, bool def_value) in config_get_bool() argument
172 return def_value; in config_get_bool()
182 return def_value; in config_get_bool()
185 …fig_get_string(const config_t *config, const char *section, const char *key, const char *def_value) in config_get_string() argument
193 return def_value; in config_get_string()