Lines Matching refs:section
25 void ConfigCacheHelper::SetBool(const std::string& section, const std::string& property, bool value… in SetBool() argument
26 config_cache_.SetProperty(section, property, value ? "true" : "false"); in SetBool()
29 std::optional<bool> ConfigCacheHelper::GetBool(const std::string& section, const std::string& prope… in GetBool() argument
30 auto value_str = config_cache_.GetProperty(section, property); in GetBool()
43 void ConfigCacheHelper::SetUint64(const std::string& section, const std::string& property, uint64_t… in SetUint64() argument
44 config_cache_.SetProperty(section, property, std::to_string(value)); in SetUint64()
47 std::optional<uint64_t> ConfigCacheHelper::GetUint64(const std::string& section, const std::string&… in GetUint64() argument
48 auto value_str = config_cache_.GetProperty(section, property); in GetUint64()
55 void ConfigCacheHelper::SetUint32(const std::string& section, const std::string& property, uint32_t… in SetUint32() argument
56 config_cache_.SetProperty(section, property, std::to_string(value)); in SetUint32()
59 std::optional<uint32_t> ConfigCacheHelper::GetUint32(const std::string& section, const std::string&… in GetUint32() argument
60 auto value_str = config_cache_.GetProperty(section, property); in GetUint32()
64 auto large_value = GetUint64(section, property); in GetUint32()
74 void ConfigCacheHelper::SetInt64(const std::string& section, const std::string& property, int64_t v… in SetInt64() argument
75 config_cache_.SetProperty(section, property, std::to_string(value)); in SetInt64()
78 std::optional<int64_t> ConfigCacheHelper::GetInt64(const std::string& section, const std::string& p… in GetInt64() argument
79 auto value_str = config_cache_.GetProperty(section, property); in GetInt64()
86 void ConfigCacheHelper::SetInt(const std::string& section, const std::string& property, int value) { in SetInt() argument
87 config_cache_.SetProperty(section, property, std::to_string(value)); in SetInt()
90 std::optional<int> ConfigCacheHelper::GetInt(const std::string& section, const std::string& propert… in GetInt() argument
91 auto value_str = config_cache_.GetProperty(section, property); in GetInt()
95 auto large_value = GetInt64(section, property); in GetInt()
106 const std::string& section, const std::string& property, const std::vector<uint8_t>& value) { in SetBin() argument
107 config_cache_.SetProperty(section, property, common::ToHexString(value)); in SetBin()
111 const std::string& section, const std::string& property) const { in GetBin() argument
112 auto value_str = config_cache_.GetProperty(section, property); in GetBin()