/aosp12/system/bt/gd/storage/ |
H A 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()
|
H A 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()
|
H A 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()
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
H A D | pointertest.cpp | 657 EXPECT_EQ(u64, Pointer("/foo/uint64").GetWithDefault(d, u64, a).GetUint64()); in TEST() 658 EXPECT_EQ(u64, Pointer("/foo/uint64").GetWithDefault(d, u64 - 1, a).GetUint64()); in TEST() 709 EXPECT_EQ(u64, Pointer("/foo/uint64").GetWithDefault(d, u64).GetUint64()); in TEST() 710 EXPECT_EQ(u64, Pointer("/foo/uint64").GetWithDefault(d, u64 - 1).GetUint64()); in TEST() 768 EXPECT_EQ(u64, GetValueByPointer(d, "/foo/uint64")->GetUint64()); in TEST() 827 EXPECT_EQ(u64, GetValueByPointer(d, "/foo/uint64")->GetUint64()); in TEST() 1134 EXPECT_EQ(u64, GetValueByPointerWithDefault(d, "/foo/uint64", u64).GetUint64()); in TEST() 1190 EXPECT_EQ(u64, GetValueByPointer(d, "/foo/uint64")->GetUint64()); in TEST() 1247 EXPECT_EQ(u64, GetValueByPointer(d, "/foo/uint64")->GetUint64()); in TEST() 1303 EXPECT_EQ(u64, GetValueByPointer(d, "/foo/uint64")->GetUint64()); in TEST() [all …]
|
H A D | valuetest.cpp | 364 EXPECT_EQ(1234u, x.GetUint64()); in TEST() 417 EXPECT_EQ(1234u, x.GetUint64()); in TEST() 456 EXPECT_EQ(1234u, x.GetUint64()); in TEST() 510 EXPECT_EQ(1234u, x.GetUint64()); in TEST() 529 EXPECT_EQ(1234u, z.GetUint64()); in TEST() 543 EXPECT_EQ(9223372036854775808uLL, z.GetUint64()); // Issue 48 in TEST() 948 EXPECT_EQ(UINT64_C(4294967296), o["uint64"].GetUint64()); in TEST()
|
/aosp12/system/bt/main/shim/ |
H A D | config.cc | 63 bool BtifConfigInterface::GetUint64(const std::string& section, in GetUint64() function in bluetooth::shim::BtifConfigInterface 68 .GetUint64(section, property); in GetUint64()
|
H A D | config.h | 37 static bool GetUint64(const std::string& section, const std::string& key,
|
/aosp12/system/bt/btif/test/ |
H A 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()
|
/aosp12/system/bt/btif/include/ |
H A D | btif_config_cache.h | 51 std::optional<uint64_t> GetUint64(const std::string& section_name,
|
/aosp12/system/bt/test/mock/ |
H A D | mock_main_shim_BtifConfigInterface.cc | 39 bool bluetooth::shim::BtifConfigInterface::GetUint64(const std::string& section, in GetUint64() function in bluetooth::shim::BtifConfigInterface
|
/aosp12/system/bt/btif/src/ |
H A 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()
|
H A D | btif_config_cache.cc | 270 std::optional<uint64_t> BtifConfigCache::GetUint64( in GetUint64() function in BtifConfigCache
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
H A D | pointer.h | 283 RAPIDJSON_ASSERT(token.GetUint64() <= SizeType(~0)); 284 return Append(static_cast<SizeType>(token.GetUint64()), allocator);
|
H A D | document.h | 1451 uint64_t GetUint64() const { RAPIDJSON_ASSERT(flags_ & kUint64Flag); return data_.n.u64; }
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/doc/ |
H A D | tutorial.md | 195 `bool IsUint64()` | `uint64_t GetUint64()`
|