Lines Matching refs:DeviceManager
25 DeviceManager::DeviceManager(provider::ConfigStore* config_store, in DeviceManager() function in weave::DeviceManager
58 DeviceManager::~DeviceManager() {} in ~DeviceManager()
60 const Settings& DeviceManager::GetSettings() const { in GetSettings()
64 void DeviceManager::AddSettingsChangedCallback( in AddSettingsChangedCallback()
69 Config* DeviceManager::GetConfig() { in GetConfig()
73 void DeviceManager::StartPrivet(provider::TaskRunner* task_runner, in StartPrivet()
84 GcdState DeviceManager::GetGcdState() const { in GetGcdState()
88 void DeviceManager::AddGcdStateChangedCallback( in AddGcdStateChangedCallback()
93 void DeviceManager::AddTraitDefinitionsFromJson(const std::string& json) { in AddTraitDefinitionsFromJson()
97 void DeviceManager::AddTraitDefinitions(const base::DictionaryValue& dict) { in AddTraitDefinitions()
101 const base::DictionaryValue& DeviceManager::GetTraits() const { in GetTraits()
105 void DeviceManager::AddTraitDefsChangedCallback(const base::Closure& callback) { in AddTraitDefsChangedCallback()
109 bool DeviceManager::AddComponent(const std::string& name, in AddComponent()
115 bool DeviceManager::RemoveComponent(const std::string& name, ErrorPtr* error) { in RemoveComponent()
119 void DeviceManager::AddComponentTreeChangedCallback( in AddComponentTreeChangedCallback()
124 const base::DictionaryValue& DeviceManager::GetComponents() const { in GetComponents()
128 bool DeviceManager::SetStatePropertiesFromJson(const std::string& component, in SetStatePropertiesFromJson()
134 bool DeviceManager::SetStateProperties(const std::string& component, in SetStateProperties()
140 const base::Value* DeviceManager::GetStateProperty(const std::string& component, in GetStateProperty()
146 bool DeviceManager::SetStateProperty(const std::string& component, in SetStateProperty()
153 void DeviceManager::AddCommandHandler(const std::string& component, in AddCommandHandler()
159 void DeviceManager::AddCommandDefinitionsFromJson(const std::string& json) { in AddCommandDefinitionsFromJson()
165 void DeviceManager::AddCommandDefinitions(const base::DictionaryValue& dict) { in AddCommandDefinitions()
169 bool DeviceManager::AddCommand(const base::DictionaryValue& command, in AddCommand()
180 Command* DeviceManager::FindCommand(const std::string& id) { in FindCommand()
184 void DeviceManager::AddCommandHandler(const std::string& command_name, in AddCommandHandler()
195 void DeviceManager::AddStateChangedCallback(const base::Closure& callback) { in AddStateChangedCallback()
199 void DeviceManager::AddStateDefinitionsFromJson(const std::string& json) { in AddStateDefinitionsFromJson()
205 void DeviceManager::AddStateDefinitions(const base::DictionaryValue& dict) { in AddStateDefinitions()
209 bool DeviceManager::SetStatePropertiesFromJson(const std::string& json, in SetStatePropertiesFromJson()
215 bool DeviceManager::SetStateProperties(const base::DictionaryValue& dict, in SetStateProperties()
236 const base::Value* DeviceManager::GetStateProperty( in GetStateProperty()
245 bool DeviceManager::SetStateProperty(const std::string& name, in SetStateProperty()
261 const base::DictionaryValue& DeviceManager::GetState() const { in GetState()
265 void DeviceManager::Register(const std::string& ticket_id, in Register()
270 void DeviceManager::AddPairingChangedCallbacks( in AddPairingChangedCallbacks()
286 new DeviceManager{config_store, task_runner, http_client, network, dns_sd, in Create()