Lines Matching refs:ConfigCache
49 const std::string ConfigCache::kDefaultSectionName = "Global";
51 ConfigCache::ConfigCache(size_t temp_device_capacity, std::unordered_set<std::string_view> persiste… in ConfigCache() function in bluetooth::storage::ConfigCache
57 void ConfigCache::SetPersistentConfigChangedCallback(std::function<void()> persistent_config_change… in SetPersistentConfigChangedCallback()
62 ConfigCache::ConfigCache(ConfigCache&& other) noexcept in ConfigCache() function in bluetooth::storage::ConfigCache
72 ConfigCache& ConfigCache::operator=(ConfigCache&& other) noexcept { in operator =()
87 bool ConfigCache::operator==(const ConfigCache& rhs) const { in operator ==()
95 bool ConfigCache::operator!=(const ConfigCache& rhs) const { in operator !=()
99 void ConfigCache::Clear() { in Clear()
114 bool ConfigCache::HasSection(const std::string& section) const { in HasSection()
120 bool ConfigCache::HasProperty(const std::string& section, const std::string& property) const { in HasProperty()
137 std::optional<std::string> ConfigCache::GetProperty(const std::string& section, const std::string& … in GetProperty()
163 void ConfigCache::SetProperty(std::string section, std::string property, std::string value) { in SetProperty()
202 bool ConfigCache::RemoveSection(const std::string& section) { in RemoveSection()
213 bool ConfigCache::RemoveProperty(const std::string& section, const std::string& property) { in RemoveProperty()
258 bool ConfigCache::IsDeviceSection(const std::string& section) { in IsDeviceSection()
262 bool ConfigCache::IsPersistentProperty(const std::string& property) const { in IsPersistentProperty()
266 void ConfigCache::RemoveSectionWithProperty(const std::string& property) { in RemoveSectionWithProperty()
293 std::vector<std::string> ConfigCache::GetPersistentSections() const { in GetPersistentSections()
303 void ConfigCache::Commit(std::queue<MutationEntry>& mutation_entries) { in Commit()
323 std::string ConfigCache::SerializeToLegacyFormat() const { in SerializeToLegacyFormat()
338 std::vector<ConfigCache::SectionAndPropertyValue> ConfigCache::GetSectionNamesWithProperty( in GetSectionNamesWithProperty()
403 bool ConfigCache::FixDeviceTypeInconsistencies() { in FixDeviceTypeInconsistencies()
425 bool ConfigCache::HasAtLeastOneMatchingPropertiesInSection( in HasAtLeastOneMatchingPropertiesInSection()
453 bool ConfigCache::IsPersistentSection(const std::string& section) const { in IsPersistentSection()