/aosp12/system/bt/gd/storage/ |
H A D | config_cache_helper_test.cc | 48 ConfigCacheHelper(config).SetUint64("A", "B", 123); in TEST() 54 ConfigCacheHelper(config).SetUint64("A", "B", num); in TEST() 58 ConfigCacheHelper(config).SetUint64("A", "B", 0); in TEST() 72 ConfigCacheHelper(config).SetUint64("A", "B", num); in TEST()
|
H A D | config_cache_helper.cc | 43 void ConfigCacheHelper::SetUint64(const std::string& section, const std::string& property, uint64_t… in SetUint64() function in bluetooth::storage::ConfigCacheHelper
|
H A D | config_cache_helper.h | 47 virtual void SetUint64(const std::string& section, const std::string& property, uint64_t value);
|
/aosp12/system/bt/main/shim/ |
H A D | config.cc | 75 bool BtifConfigInterface::SetUint64(const std::string& section, in SetUint64() function in bluetooth::shim::BtifConfigInterface 79 .SetUint64(section, property, value); in SetUint64()
|
H A D | config.h | 39 static bool SetUint64(const std::string& section, const std::string& key,
|
/aosp12/system/bt/btif/test/ |
H A D | btif_config_cache_test.cc | 181 test_btif_config_cache.SetUint64(kBtAddr1, "Property_64", 4294967296); in TEST() 214 test_btif_config_cache.SetUint64(kBtAddr1, "Property_64", 4294967296); in TEST() 272 test_btif_config_cache.SetUint64(kBtAddr1, "Property_64", 4294967296); in TEST() 296 test_btif_config_cache.SetUint64(kBtAddr1, "Property_64", 65537); in TEST()
|
/aosp12/system/bt/btif/include/ |
H A D | btif_config_cache.h | 50 void SetUint64(std::string section_name, std::string key, uint64_t value);
|
/aosp12/system/bt/test/mock/ |
H A D | mock_main_shim_BtifConfigInterface.cc | 44 bool bluetooth::shim::BtifConfigInterface::SetUint64(const std::string& section, in SetUint64() function in bluetooth::shim::BtifConfigInterface
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
H A D | valuetest.cpp | 223 x.SetUint64(RAPIDJSON_UINT64_C2(0xFFFFFFFF, 0xFFFFFFF0)); in TEST() 224 y.SetUint64(RAPIDJSON_UINT64_C2(0xFFFFFFFF, 0xFFFFFFFF)); in TEST() 528 z.SetUint64(1234); in TEST() 531 z.SetUint64(2147483648LL); // 2^31, cannot cast as int in TEST() 536 z.SetUint64(4294967296LL); // 2^32, cannot cast as uint in TEST() 541 z.SetUint64(9223372036854775808uLL); // 2^63 cannot cast as int64 in TEST()
|
/aosp12/system/bt/btif/src/ |
H A D | btif_config.cc | 446 return bluetooth::shim::BtifConfigInterface::SetUint64(section, key, value); in btif_config_set_uint64() 449 btif_config_cache.SetUint64(section, key, value); in btif_config_set_uint64()
|
H A D | btif_config_cache.cc | 265 void BtifConfigCache::SetUint64(std::string section_name, std::string key, in SetUint64() function in BtifConfigCache
|
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
H A D | document.h | 1465 …GenericValue& SetUint64(uint64_t u64) { this->~GenericValue(); new (this) GenericValue(u64); re…
|