Home
last modified time | relevance | path

Searched refs:BtifConfigInterface (Results 1 – 5 of 5) sorted by relevance

/system/bt/test/mock/
Dmock_main_shim_BtifConfigInterface.cc21 bool bluetooth::shim::BtifConfigInterface::HasSection( in HasSection()
25 bool bluetooth::shim::BtifConfigInterface::HasProperty( in HasProperty()
29 bool bluetooth::shim::BtifConfigInterface::GetInt(const std::string& section, in GetInt()
34 bool bluetooth::shim::BtifConfigInterface::SetInt(const std::string& section, in SetInt()
39 bool bluetooth::shim::BtifConfigInterface::GetUint64(const std::string& section, in GetUint64()
44 bool bluetooth::shim::BtifConfigInterface::SetUint64(const std::string& section, in SetUint64()
49 bool bluetooth::shim::BtifConfigInterface::GetStr(const std::string& section, in GetStr()
55 std::optional<std::string> bluetooth::shim::BtifConfigInterface::GetStr( in GetStr()
59 bool bluetooth::shim::BtifConfigInterface::SetStr(const std::string& section, in SetStr()
64 bool bluetooth::shim::BtifConfigInterface::GetBin(const std::string& section, in GetBin()
[all …]
/system/bt/main/shim/
Dconfig.cc36 bool BtifConfigInterface::HasSection(const std::string& section) { in HasSection()
40 bool BtifConfigInterface::HasProperty(const std::string& section, in HasProperty()
45 bool BtifConfigInterface::GetInt(const std::string& section, in GetInt()
56 bool BtifConfigInterface::SetInt(const std::string& section, in SetInt()
63 bool BtifConfigInterface::GetUint64(const std::string& section, in GetUint64()
75 bool BtifConfigInterface::SetUint64(const std::string& section, in SetUint64()
83 bool BtifConfigInterface::GetStr(const std::string& section, in GetStr()
103 std::optional<std::string> BtifConfigInterface::GetStr( in GetStr()
108 bool BtifConfigInterface::SetStr(const std::string& section, in SetStr()
116 bool BtifConfigInterface::GetBin(const std::string& section, in GetBin()
[all …]
Dconfig.h27 class BtifConfigInterface {
29 ~BtifConfigInterface() = default;
/system/bt/btif/src/
Dbtif_config.cc393 return bluetooth::shim::BtifConfigInterface::HasProperty(section, key); in btif_config_exist()
403 return bluetooth::shim::BtifConfigInterface::GetInt(section, key, value); in btif_config_get_int()
419 return bluetooth::shim::BtifConfigInterface::SetInt(section, key, value); in btif_config_set_int()
430 return bluetooth::shim::BtifConfigInterface::GetUint64(section, key, value); in btif_config_get_uint64()
446 return bluetooth::shim::BtifConfigInterface::SetUint64(section, key, value); in btif_config_set_uint64()
476 return bluetooth::shim::BtifConfigInterface::GetStr(section, key, value, in btif_config_get_str()
496 return bluetooth::shim::BtifConfigInterface::SetStr(section, key, value); in btif_config_set_str()
513 return bluetooth::shim::BtifConfigInterface::GetBin(section, key, value, in btif_config_get_bin()
578 return bluetooth::shim::BtifConfigInterface::GetBinLength(section, key); in btif_config_get_bin_length()
591 return bluetooth::shim::BtifConfigInterface::SetBin(section, key, value, in btif_config_set_bin()
[all …]
/system/bt/gd/storage/
Dstorage_module.h36 class BtifConfigInterface; variable
114 friend shim::BtifConfigInterface;