Home
last modified time | relevance | path

Searched refs:GetPropertyNames (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Bluetooth/system/gd/storage/
Dconfig_cache_test.cc451 ASSERT_THAT(config.GetPropertyNames("A"), ElementsAre("A")); in TEST()
452 ASSERT_THAT(config.GetPropertyNames("AA:BB:CC:DD:EE:FF"), ElementsAre("B")); in TEST()
453 ASSERT_THAT(config.GetPropertyNames("AA:BB:CC:DD:EE:EF"), ElementsAre(BTIF_STORAGE_KEY_LINK_KEY)); in TEST()
454 ASSERT_THAT(config.GetPropertyNames("D"), ElementsAre()); in TEST()
Dconfig_cache.h100 virtual std::vector<std::string> GetPropertyNames(const std::string& section) const;
Dconfig_cache.cc421 std::vector<std::string> ConfigCache::GetPropertyNames(const std::string& section) const { in GetPropertyNames() function in bluetooth::storage::ConfigCache
/packages/modules/Bluetooth/system/gd/sysprops/
Dsysprops_module.cc144 for (const auto& name : config->GetPropertyNames(kAflagSection)) { in parse_config()