Searched refs:def_value (Results 1 – 2 of 2) sorted by relevance
75 const std::string& key, int def_value);81 const std::string& key, uint64_t def_value);87 const std::string& key, bool def_value);96 const std::string* def_value);
122 const std::string& key, int def_value) { in config_get_int() argument124 if (!entry) return def_value; in config_get_int()128 return (*endptr == '\0') ? ret : def_value; in config_get_int()132 const std::string& key, uint64_t def_value) { in config_get_uint64() argument134 if (!entry) return def_value; in config_get_uint64()138 return (*endptr == '\0') ? ret : def_value; in config_get_uint64()142 const std::string& key, bool def_value) { in config_get_bool() argument144 if (!entry) return def_value; in config_get_bool()149 return def_value; in config_get_bool()155 const std::string* def_value) { in config_get_string() argument[all …]