Home
last modified time | relevance | path

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

/aosp12/system/bt/gd/storage/
H A Dconfig_cache_helper_test.cc48 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 Dconfig_cache_helper.cc43 void ConfigCacheHelper::SetUint64(const std::string& section, const std::string& property, uint64_t… in SetUint64() function in bluetooth::storage::ConfigCacheHelper
H A Dconfig_cache_helper.h47 virtual void SetUint64(const std::string& section, const std::string& property, uint64_t value);
/aosp12/system/bt/main/shim/
H A Dconfig.cc75 bool BtifConfigInterface::SetUint64(const std::string& section, in SetUint64() function in bluetooth::shim::BtifConfigInterface
79 .SetUint64(section, property, value); in SetUint64()
H A Dconfig.h39 static bool SetUint64(const std::string& section, const std::string& key,
/aosp12/system/bt/btif/test/
H A Dbtif_config_cache_test.cc181 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 Dbtif_config_cache.h50 void SetUint64(std::string section_name, std::string key, uint64_t value);
/aosp12/system/bt/test/mock/
H A Dmock_main_shim_BtifConfigInterface.cc44 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 Dvaluetest.cpp223 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 Dbtif_config.cc446 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 Dbtif_config_cache.cc265 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 Ddocument.h1465 …GenericValue& SetUint64(uint64_t u64) { this->~GenericValue(); new (this) GenericValue(u64); re…