Searched refs:GetUint64 (Results 1 – 10 of 10) sorted by relevance
/system/bt/gd/storage/ |
D | config_cache_helper_test.cc | 50 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(0))); in TEST() 68 ASSERT_THAT(ConfigCacheHelper(config).GetUint64("A", "B"), Optional(Eq(uint32_t(123)))); in TEST()
|
D | config_cache_helper.cc | 47 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()
|
D | config_cache_helper.h | 48 …virtual std::optional<uint64_t> GetUint64(const std::string& section, const std::string& property)… 72 auto value = GetUint64(section, property); in Get()
|
/system/bt/main/shim/ |
D | config.cc | 63 bool BtifConfigInterface::GetUint64(const std::string& section, in GetUint64() function in bluetooth::shim::BtifConfigInterface 68 .GetUint64(section, property); in GetUint64()
|
D | config.h | 37 static bool GetUint64(const std::string& section, const std::string& key,
|
/system/bt/btif/include/ |
D | btif_config_cache.h | 51 std::optional<uint64_t> GetUint64(const std::string& section_name,
|
/system/bt/btif/test/ |
D | btif_config_cache_test.cc | 183 EXPECT_THAT(test_btif_config_cache.GetUint64(kBtAddr1, "Property_64"), in TEST() 216 EXPECT_THAT(test_btif_config_cache.GetUint64(kBtAddr1, "Property_64"), in TEST() 273 EXPECT_THAT(test_btif_config_cache.GetUint64(kBtAddr1, "Property_64"), in TEST() 297 EXPECT_THAT(test_btif_config_cache.GetUint64(kBtAddr1, "Property_64"), in TEST()
|
/system/bt/test/mock/ |
D | mock_main_shim_BtifConfigInterface.cc | 39 bool bluetooth::shim::BtifConfigInterface::GetUint64(const std::string& section, in GetUint64() function in bluetooth::shim::BtifConfigInterface
|
/system/bt/btif/src/ |
D | btif_config.cc | 430 return bluetooth::shim::BtifConfigInterface::GetUint64(section, key, value); in btif_config_get_uint64() 434 auto ret = btif_config_cache.GetUint64(section, key); in btif_config_get_uint64()
|
D | btif_config_cache.cc | 270 std::optional<uint64_t> BtifConfigCache::GetUint64( in GetUint64() function in BtifConfigCache
|