Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/storage/
Dconfig_cache_helper_test.cc48 ConfigCacheHelper(config).SetUint64("A", "B", 123); in TEST()
54 ConfigCacheHelper(config).SetUint64("A", "B", num); in TEST()
59 ConfigCacheHelper(config).SetUint64("A", "B", 0); in TEST()
73 ConfigCacheHelper(config).SetUint64("A", "B", num); in TEST()
Dconfig_cache_helper.cc47 void ConfigCacheHelper::SetUint64(const std::string& section, const std::string& property, in SetUint64() function in bluetooth::storage::ConfigCacheHelper
Dstorage_module.cc309 void StorageModule::SetUint64(const std::string& section, const std::string& property, in SetUint64() function in bluetooth::storage::StorageModule
312 ConfigCacheHelper::FromConfigCache(pimpl_->cache_).SetUint64(section, property, value); in SetUint64()
Dstorage_module.h175 void SetUint64(const std::string& section, const std::string& property, uint64_t value);
Dconfig_cache_helper.h49 virtual void SetUint64(const std::string& section, const std::string& property, uint64_t value);
/packages/modules/Bluetooth/system/main/shim/
Dconfig.cc68 bool BtifConfigInterface::SetUint64(const std::string& section, const std::string& property, in SetUint64() function in bluetooth::shim::BtifConfigInterface
70 GetStorage()->SetUint64(section, property, value); in SetUint64()
Dconfig.h35 static bool SetUint64(const std::string& section, const std::string& key, uint64_t value);
/packages/modules/Bluetooth/system/test/mock/
Dmock_main_shim_BtifConfigInterface.cc41 bool bluetooth::shim::BtifConfigInterface::SetUint64(const std::string& /* section */, in SetUint64() function in bluetooth::shim::BtifConfigInterface
/packages/modules/Bluetooth/system/btif/src/
Dbtif_config.cc229 return bluetooth::shim::BtifConfigInterface::SetUint64(section, key, value); in btif_config_set_uint64()