Searched refs:def_value (Results 1 – 2 of 2) sorted by relevance
72 const std::string& key, int def_value);78 const std::string& key, uint64_t def_value);84 const std::string& key, bool def_value);93 const std::string* def_value);
109 const std::string& key, int def_value) { in config_get_int() argument111 if (!entry) return def_value; in config_get_int()115 return (*endptr == '\0') ? ret : def_value; in config_get_int()119 const std::string& key, uint64_t def_value) { in config_get_uint64() argument121 if (!entry) return def_value; in config_get_uint64()125 return (*endptr == '\0') ? ret : def_value; in config_get_uint64()129 const std::string& key, bool def_value) { in config_get_bool() argument131 if (!entry) return def_value; in config_get_bool()136 return def_value; in config_get_bool()142 const std::string* def_value) { in config_get_string() argument[all …]