Searched refs:GetUint64 (Results 1 – 9 of 9) sorted by relevance
/packages/modules/Bluetooth/system/gd/storage/ |
D | config_cache_helper_test.cc | 50 ASSERT_THAT(ConfigCacheHelper(config).GetUint64("A", "B"), Optional(Eq(uint64_t(123)))); in TEST() 57 ASSERT_THAT(ConfigCacheHelper(config).GetUint64("A", "B"), Optional(Eq(num))); in TEST() 61 ASSERT_THAT(ConfigCacheHelper(config).GetUint64("A", "B"), Optional(Eq(0ul))); in TEST() 69 ASSERT_THAT(ConfigCacheHelper(config).GetUint64("A", "B"), Optional(Eq(uint32_t(123)))); in TEST()
|
D | config_cache_helper.cc | 52 std::optional<uint64_t> ConfigCacheHelper::GetUint64(const std::string& section, in GetUint64() function in bluetooth::storage::ConfigCacheHelper 72 auto large_value = GetUint64(section, property); in GetUint32()
|
D | config_cache_helper.h | 50 virtual std::optional<uint64_t> GetUint64(const std::string& section, 81 auto value = GetUint64(section, property); in Get()
|
D | storage_module.cc | 315 std::optional<uint64_t> StorageModule::GetUint64(const std::string& section, in GetUint64() function in bluetooth::storage::StorageModule 318 return ConfigCacheHelper::FromConfigCache(pimpl_->cache_).GetUint64(section, property); in GetUint64()
|
D | storage_module.h | 176 std::optional<uint64_t> GetUint64(const std::string& section, const std::string& property) const;
|
/packages/modules/Bluetooth/system/main/shim/ |
D | config.cc | 58 bool BtifConfigInterface::GetUint64(const std::string& section, const std::string& property, in GetUint64() function in bluetooth::shim::BtifConfigInterface 61 auto ret = GetStorage()->GetUint64(section, property); in GetUint64()
|
D | config.h | 34 static bool GetUint64(const std::string& section, const std::string& key, uint64_t* value);
|
/packages/modules/Bluetooth/system/test/mock/ |
D | mock_main_shim_BtifConfigInterface.cc | 36 bool bluetooth::shim::BtifConfigInterface::GetUint64(const std::string& /* section */, in GetUint64() function in bluetooth::shim::BtifConfigInterface
|
/packages/modules/Bluetooth/system/btif/src/ |
D | btif_config.cc | 223 return bluetooth::shim::BtifConfigInterface::GetUint64(section, key, value); in btif_config_get_uint64()
|