Home
last modified time | relevance | path

Searched refs:GetUint32 (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/system/gd/storage/
Dconfig_cache_helper_test.cc75 ASSERT_FALSE(ConfigCacheHelper(config).GetUint32("A", "B")); in TEST()
79 ASSERT_THAT(ConfigCacheHelper(config).GetUint32("A", "B"), Optional(Eq(0u))); in TEST()
Dconfig_cache_helper.cc59 std::optional<uint32_t> ConfigCacheHelper::GetUint32(const std::string& section, const std::string&… in GetUint32() function in bluetooth::storage::ConfigCacheHelper
Dstorage_module.cc342 std::optional<uint32_t> StorageModule::GetUint32( in GetUint32() function in bluetooth::storage::StorageModule
345 return ConfigCacheHelper::FromConfigCache(pimpl_->cache_).GetUint32(section, property); in GetUint32()
Dstorage_module.h167 std::optional<uint32_t> GetUint32(const std::string& section, const std::string& property) const;
Dconfig_cache_helper.h50 …virtual std::optional<uint32_t> GetUint32(const std::string& section, const std::string& property)…