Home
last modified time | relevance | path

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

/system/bt/osi/include/
Dconfig.h67 int config_get_int(const config_t *config, const char *section, const char *key, int def_value);
72 bool config_get_bool(const config_t *config, const char *section, const char *key, bool def_value);
78 …ig_get_string(const config_t *config, const char *section, const char *key, const char *def_value);
/system/bt/osi/src/
Dconfig.c151 int config_get_int(const config_t *config, const char *section, const char *key, int def_value) { in config_get_int() argument
158 return def_value; in config_get_int()
162 return (*endptr == '\0') ? ret : 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() argument
172 return def_value; in config_get_bool()
179 return def_value; in config_get_bool()
182 …g_get_string(const config_t *config, const char *section, const char *key, const char *def_value) { in config_get_string() argument
189 return def_value; in config_get_string()