Searched refs:def_value (Results 1 – 2 of 2) sorted by relevance
80 const std::string& key, int def_value);86 const std::string& key, uint64_t def_value);92 const std::string& key, bool def_value);101 const std::string* def_value);
152 const std::string& key, int def_value) { in config_get_int() argument154 if (!entry) return def_value; in config_get_int()158 return (*endptr == '\0') ? ret : def_value; in config_get_int()162 const std::string& key, uint64_t def_value) { in config_get_uint64() argument164 if (!entry) return def_value; in config_get_uint64()168 return (*endptr == '\0') ? ret : def_value; in config_get_uint64()172 const std::string& key, bool def_value) { in config_get_bool() argument174 if (!entry) return def_value; in config_get_bool()179 return def_value; in config_get_bool()185 const std::string* def_value) { in config_get_string() argument[all …]