Home
last modified time | relevance | path

Searched refs:SectionAndPropertyValue (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/system/gd/storage/
Dconfig_cache.h93 struct SectionAndPropertyValue { struct
96 bool operator==(const SectionAndPropertyValue& rhs) const { argument
99 bool operator!=(const SectionAndPropertyValue& rhs) const { return !(*this == rhs); }
101 virtual std::vector<SectionAndPropertyValue> GetSectionNamesWithProperty(
Dconfig_cache_test.cc41 using SectionAndPropertyValue = bluetooth::storage::ConfigCache::SectionAndPropertyValue; typedef
396 ElementsAre(SectionAndPropertyValue{.section = "A", .property = "C"}, in TEST()
397 SectionAndPropertyValue{.section = "AA:BB:CC:DD:EE:FF", .property = "C"})); in TEST()
Dconfig_cache.cc410 std::vector<ConfigCache::SectionAndPropertyValue> ConfigCache::GetSectionNamesWithProperty( in GetSectionNamesWithProperty()
413 std::vector<SectionAndPropertyValue> result; in GetSectionNamesWithProperty()
418 result.emplace_back(SectionAndPropertyValue{.section = elem.first, .property = it->second}); in GetSectionNamesWithProperty()
426 result.emplace_back(SectionAndPropertyValue{.section = elem.first, .property = it->second}); in GetSectionNamesWithProperty()