Searched refs:BtifConfigInterface (Results 1 – 7 of 7) sorted by relevance
/packages/modules/Bluetooth/system/test/mock/ |
D | mock_main_shim_BtifConfigInterface.cc | 21 bool bluetooth::shim::BtifConfigInterface::HasSection( in HasSection() 25 bool bluetooth::shim::BtifConfigInterface::HasProperty( in HasProperty() 29 bool bluetooth::shim::BtifConfigInterface::GetInt( in GetInt() 34 bool bluetooth::shim::BtifConfigInterface::SetInt( in SetInt() 39 bool bluetooth::shim::BtifConfigInterface::GetUint64( in GetUint64() 44 bool bluetooth::shim::BtifConfigInterface::SetUint64( in SetUint64() 49 bool bluetooth::shim::BtifConfigInterface::GetStr( in GetStr() 54 std::optional<std::string> bluetooth::shim::BtifConfigInterface::GetStr( in GetStr() 58 bool bluetooth::shim::BtifConfigInterface::SetStr( in SetStr() 63 bool bluetooth::shim::BtifConfigInterface::GetBin( in GetBin() [all …]
|
/packages/modules/Bluetooth/system/main/shim/ |
D | config.cc | 35 bool BtifConfigInterface::HasSection(const std::string& section) { in HasSection() 39 bool BtifConfigInterface::HasProperty(const std::string& section, in HasProperty() 44 bool BtifConfigInterface::GetInt(const std::string& section, in GetInt() 54 bool BtifConfigInterface::SetInt(const std::string& section, in SetInt() 60 bool BtifConfigInterface::GetUint64(const std::string& section, in GetUint64() 71 bool BtifConfigInterface::SetUint64(const std::string& section, in SetUint64() 78 bool BtifConfigInterface::GetStr(const std::string& section, in GetStr() 99 std::optional<std::string> BtifConfigInterface::GetStr( in GetStr() 104 bool BtifConfigInterface::SetStr(const std::string& section, in SetStr() 112 bool BtifConfigInterface::GetBin(const std::string& section, in GetBin() [all …]
|
D | config.h | 27 class BtifConfigInterface { 29 ~BtifConfigInterface() = default;
|
/packages/modules/Bluetooth/system/btif/src/ |
D | btif_config.cc | 215 return bluetooth::shim::BtifConfigInterface::HasProperty(section, key); in btif_config_exist() 222 return bluetooth::shim::BtifConfigInterface::GetInt(section, key, value); in btif_config_get_int() 229 return bluetooth::shim::BtifConfigInterface::SetInt(section, key, value); in btif_config_set_int() 236 return bluetooth::shim::BtifConfigInterface::GetUint64(section, key, value); in btif_config_get_uint64() 243 return bluetooth::shim::BtifConfigInterface::SetUint64(section, key, value); in btif_config_set_uint64() 269 return bluetooth::shim::BtifConfigInterface::GetStr(section, key, value, in btif_config_get_str() 277 return bluetooth::shim::BtifConfigInterface::SetStr(section, key, value); in btif_config_set_str() 284 return bluetooth::shim::BtifConfigInterface::GetBin(section, key, value, in btif_config_get_bin() 292 return bluetooth::shim::BtifConfigInterface::GetBinLength(section, key); in btif_config_get_bin_length() 299 return bluetooth::shim::BtifConfigInterface::SetBin(section, key, value, in btif_config_set_bin() [all …]
|
D | btif_keystore.cc | 65 shim::BtifConfigInterface::ConvertEncryptOrDecryptKeyIfNeeded(); in ConvertEncryptOrDecryptKeyIfNeeded()
|
/packages/modules/Bluetooth/system/stack/test/common/ |
D | mock_btif_config.h | 27 class BtifConfigInterface { 33 virtual ~BtifConfigInterface() = default; 36 class MockBtifConfigInterface : public BtifConfigInterface {
|
/packages/modules/Bluetooth/system/gd/storage/ |
D | storage_module.h | 36 class BtifConfigInterface; variable 122 friend shim::BtifConfigInterface;
|