Home
last modified time | relevance | path

Searched refs:SetInt (Results 1 – 10 of 10) sorted by relevance

/system/bt/gd/storage/
Dconfig_cache_helper_test.cc96 ConfigCacheHelper(config).SetInt("A", "B", 0); in TEST()
104 ConfigCacheHelper(config).SetInt("A", "B", 123); in TEST()
108 ConfigCacheHelper(config).SetInt("A", "B", -123); in TEST()
112 ConfigCacheHelper(config).SetInt("A", "B", 0); in TEST()
Dconfig_cache_helper.cc86 void ConfigCacheHelper::SetInt(const std::string& section, const std::string& property, int value) { in SetInt() function in bluetooth::storage::ConfigCacheHelper
Dconfig_cache_helper.h53 virtual void SetInt(const std::string& section, const std::string& property, int value);
/system/bt/btif/test/
Dbtif_config_cache_test.cc75 test_btif_config_cache.SetInt(kBtAddr1, "Property_Int", 1); in TEST()
176 test_btif_config_cache.SetInt(kBtAddr1, "Property_Int", 65536); in TEST()
209 test_btif_config_cache.SetInt(kBtAddr1, "Property_Int", 65536); in TEST()
263 test_btif_config_cache.SetInt(kBtAddr1, "Property_Int", 65536); in TEST()
268 test_btif_config_cache.SetInt(kBtAddr1, "Property_Int", 256); in TEST()
292 test_btif_config_cache.SetInt(kBtAddr1, "Property_Int", 64); in TEST()
/system/bt/main/shim/
Dconfig.cc56 bool BtifConfigInterface::SetInt(const std::string& section, in SetInt() function in bluetooth::shim::BtifConfigInterface
59 .SetInt(section, property, value); in SetInt()
Dconfig.h35 static bool SetInt(const std::string& section, const std::string& key,
/system/bt/btif/include/
Dbtif_config_cache.h47 void SetInt(std::string section_name, std::string key, int value);
/system/bt/test/mock/
Dmock_main_shim_BtifConfigInterface.cc34 bool bluetooth::shim::BtifConfigInterface::SetInt(const std::string& section, in SetInt() function in bluetooth::shim::BtifConfigInterface
/system/bt/btif/src/
Dbtif_config.cc419 return bluetooth::shim::BtifConfigInterface::SetInt(section, key, value); in btif_config_set_int()
422 btif_config_cache.SetInt(section, key, value); in btif_config_set_int()
Dbtif_config_cache.cc239 void BtifConfigCache::SetInt(std::string section_name, std::string key, in SetInt() function in BtifConfigCache