Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/storage/
Dconfig_cache_helper_test.cc91 ASSERT_THAT(ConfigCacheHelper(config).GetInt64("A", "B"), Optional(Eq(int64_t(num)))); in TEST()
96 ASSERT_THAT(ConfigCacheHelper(config).GetInt64("A", "B"), Optional(Eq(-1 * num))); in TEST()
100 ASSERT_THAT(ConfigCacheHelper(config).GetInt64("A", "B"), Optional(Eq(int64_t(0)))); in TEST()
Dconfig_cache_helper.cc87 std::optional<int64_t> ConfigCacheHelper::GetInt64(const std::string& section, in GetInt64() function in bluetooth::storage::ConfigCacheHelper
106 auto large_value = GetInt64(section, property); in GetInt()
Dconfig_cache_helper.h56 virtual std::optional<int64_t> GetInt64(const std::string& section,
68 auto value = GetInt64(section, property); in Get()
Dstorage_module.cc337 std::optional<int64_t> StorageModule::GetInt64(const std::string& section, in GetInt64() function in bluetooth::storage::StorageModule
340 return ConfigCacheHelper::FromConfigCache(pimpl_->cache_).GetInt64(section, property); in GetInt64()
Dstorage_module.h180 std::optional<int64_t> GetInt64(const std::string& section, const std::string& property) const;