Home
last modified time | relevance | path

Searched refs:GetUint64 (Results 1 – 12 of 12) sorted by relevance

/packages/modules/Bluetooth/system/gd/storage/
Dconfig_cache_helper_test.cc50 ASSERT_THAT(ConfigCacheHelper(config).GetUint64("A", "B"), Optional(Eq(uint64_t(123)))); in TEST()
56 ASSERT_THAT(ConfigCacheHelper(config).GetUint64("A", "B"), Optional(Eq(num))); in TEST()
60 ASSERT_THAT(ConfigCacheHelper(config).GetUint64("A", "B"), Optional(Eq(0ul))); in TEST()
68 ASSERT_THAT(ConfigCacheHelper(config).GetUint64("A", "B"), Optional(Eq(uint32_t(123)))); in TEST()
Dconfig_cache_helper.cc47 std::optional<uint64_t> ConfigCacheHelper::GetUint64(const std::string& section, const std::string&… in GetUint64() function in bluetooth::storage::ConfigCacheHelper
64 auto large_value = GetUint64(section, property); in GetUint32()
Dconfig_cache_helper.h48 …virtual std::optional<uint64_t> GetUint64(const std::string& section, const std::string& property)…
72 auto value = GetUint64(section, property); in Get()
Dstorage_module.cc330 std::optional<uint64_t> StorageModule::GetUint64( in GetUint64() function in bluetooth::storage::StorageModule
333 return ConfigCacheHelper::FromConfigCache(pimpl_->cache_).GetUint64(section, property); in GetUint64()
Dstorage_module.h165 std::optional<uint64_t> GetUint64(const std::string& section, const std::string& property) const;
/packages/modules/Bluetooth/system/main/shim/
Dconfig.cc61 bool BtifConfigInterface::GetUint64(const std::string& section, in GetUint64() function in bluetooth::shim::BtifConfigInterface
65 auto ret = GetStorage()->GetUint64(section, property); in GetUint64()
Dconfig.h37 static bool GetUint64(const std::string& section, const std::string& key,
/packages/modules/Bluetooth/system/btif/test/
Dbtif_config_cache_test.cc185 EXPECT_THAT(test_btif_config_cache.GetUint64(kBtAddr1, "Property_64"), in TEST()
218 EXPECT_THAT(test_btif_config_cache.GetUint64(kBtAddr1, "Property_64"), in TEST()
275 EXPECT_THAT(test_btif_config_cache.GetUint64(kBtAddr1, "Property_64"), in TEST()
299 EXPECT_THAT(test_btif_config_cache.GetUint64(kBtAddr1, "Property_64"), in TEST()
/packages/modules/Bluetooth/system/btif/include/
Dbtif_config_cache.h51 std::optional<uint64_t> GetUint64(const std::string& section_name,
/packages/modules/Bluetooth/system/test/mock/
Dmock_main_shim_BtifConfigInterface.cc39 bool bluetooth::shim::BtifConfigInterface::GetUint64(const std::string& section, in GetUint64() function in bluetooth::shim::BtifConfigInterface
/packages/modules/Bluetooth/system/btif/src/
Dbtif_config_cache.cc275 std::optional<uint64_t> BtifConfigCache::GetUint64( in GetUint64() function in BtifConfigCache
Dbtif_config.cc232 return bluetooth::shim::BtifConfigInterface::GetUint64(section, key, value); in btif_config_get_uint64()