Searched refs:GetInt64 (Results 1 – 5 of 5) sorted by relevance
/packages/modules/Bluetooth/system/gd/storage/ |
D | config_cache_helper_test.cc | 91 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()
|
D | config_cache_helper.cc | 87 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()
|
D | config_cache_helper.h | 56 virtual std::optional<int64_t> GetInt64(const std::string& section, 68 auto value = GetInt64(section, property); in Get()
|
D | storage_module.cc | 337 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()
|
D | storage_module.h | 180 std::optional<int64_t> GetInt64(const std::string& section, const std::string& property) const;
|