Home
last modified time | relevance | path

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

/system/bt/gd/storage/
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()
Dconfig_cache_helper.cc43 void ConfigCacheHelper::SetUint64(const std::string& section, const std::string& property, uint64_t… in SetUint64() function in bluetooth::storage::ConfigCacheHelper
Dconfig_cache_helper.h47 virtual void SetUint64(const std::string& section, const std::string& property, uint64_t value);
/system/bt/main/shim/
Dconfig.cc75 bool BtifConfigInterface::SetUint64(const std::string& section, in SetUint64() function in bluetooth::shim::BtifConfigInterface
79 .SetUint64(section, property, value); in SetUint64()
Dconfig.h39 static bool SetUint64(const std::string& section, const std::string& key,
/system/bt/btif/include/
Dbtif_config_cache.h50 void SetUint64(std::string section_name, std::string key, uint64_t value);
/system/bt/btif/test/
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()
/system/bt/btif/src/
Dbtif_config.cc448 return bluetooth::shim::BtifConfigInterface::SetUint64(section, key, value); in btif_config_set_uint64()
451 btif_config_cache.SetUint64(section, key, value); in btif_config_set_uint64()
Dbtif_config_cache.cc265 void BtifConfigCache::SetUint64(std::string section_name, std::string key, in SetUint64() function in BtifConfigCache