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.cc89 ASSERT_THAT(ConfigCacheHelper(config).GetInt64("A", "B"), Optional(Eq(int64_t(num)))); in TEST()
94 ASSERT_THAT(ConfigCacheHelper(config).GetInt64("A", "B"), Optional(Eq(-1 * num))); in TEST()
98 ASSERT_THAT(ConfigCacheHelper(config).GetInt64("A", "B"), Optional(Eq(int64_t(0)))); in TEST()
Dconfig_cache_helper.cc80 std::optional<int64_t> ConfigCacheHelper::GetInt64(const std::string& section, const std::string& p… in GetInt64() function in bluetooth::storage::ConfigCacheHelper
97 auto large_value = GetInt64(section, property); in GetInt()
Dconfig_cache_helper.h52 …virtual std::optional<int64_t> GetInt64(const std::string& section, const std::string& property) c…
60 auto value = GetInt64(section, property); in Get()
Dstorage_module.cc335 std::optional<int64_t> StorageModule::GetInt64( in GetInt64() function in bluetooth::storage::StorageModule
338 return ConfigCacheHelper::FromConfigCache(pimpl_->cache_).GetInt64(section, property); in GetInt64()
Dstorage_module.h172 std::optional<int64_t> GetInt64(const std::string& section, const std::string& property) const;