Searched refs:GetInt64 (Results 1 – 5 of 5) sorted by relevance
/packages/modules/Bluetooth/system/gd/storage/ |
D | config_cache_helper_test.cc | 89 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()
|
D | config_cache_helper.cc | 80 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()
|
D | config_cache_helper.h | 52 …virtual std::optional<int64_t> GetInt64(const std::string& section, const std::string& property) c… 60 auto value = GetInt64(section, property); in Get()
|
D | storage_module.cc | 335 std::optional<int64_t> StorageModule::GetInt64( in GetInt64() function in bluetooth::storage::StorageModule 338 return ConfigCacheHelper::FromConfigCache(pimpl_->cache_).GetInt64(section, property); in GetInt64()
|
D | storage_module.h | 172 std::optional<int64_t> GetInt64(const std::string& section, const std::string& property) const;
|