Lines Matching refs:BtifConfigInterface
36 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()
131 size_t BtifConfigInterface::GetBinLength(const std::string& section, in GetBinLength()
141 bool BtifConfigInterface::SetBin(const std::string& section, in SetBin()
150 bool BtifConfigInterface::RemoveProperty(const std::string& section, in RemoveProperty()
155 std::vector<std::string> BtifConfigInterface::GetPersistentDevices() { in GetPersistentDevices()
159 void BtifConfigInterface::Save() { GetStorage()->SaveDelayed(); } in Save()
161 void BtifConfigInterface::Flush() { GetStorage()->SaveImmediately(); } in Flush()
163 void BtifConfigInterface::Clear() { GetStorage()->GetConfigCache()->Clear(); } in Clear()