/external/libweave/src/ |
D | device_manager.cc | 134 bool DeviceManager::SetStateProperties(const std::string& component, in SetStateProperties() function in weave::DeviceManager 137 return component_manager_->SetStateProperties(component, dict, error); in SetStateProperties() 212 return dict && SetStateProperties(*dict, error); in SetStatePropertiesFromJson() 215 bool DeviceManager::SetStateProperties(const base::DictionaryValue& dict, in SetStateProperties() function in weave::DeviceManager 230 if (!component_manager_->SetStateProperties(component, trait_state, error)) in SetStateProperties()
|
D | device_manager.h | 54 bool SetStateProperties(const std::string& component, 89 bool SetStateProperties(const base::DictionaryValue& dict,
|
D | base_api_handler_unittest.cc | 38 EXPECT_CALL(device_, SetStateProperties(_, _, _)) in SetUp() 40 Invoke(&component_manager_, &ComponentManager::SetStateProperties)); in SetUp()
|
D | access_api_handler_unittest.cc | 51 EXPECT_CALL(device_, SetStateProperties(_, _, _)) in SetUp() 53 Invoke(&component_manager_, &ComponentManager::SetStateProperties)); in SetUp()
|
D | mock_component_manager.h | 72 MOCK_METHOD3(SetStateProperties,
|
D | component_manager.h | 168 virtual bool SetStateProperties(const std::string& component_path,
|
D | base_api_handler.cc | 166 device_->SetStateProperties(kBaseComponent, state, nullptr); in OnConfigChanged()
|
D | component_manager_impl.h | 132 bool SetStateProperties(const std::string& component_path,
|
D | component_manager_impl.cc | 370 bool ComponentManagerImpl::SetStateProperties(const std::string& component_path, in SetStateProperties() function in weave::ComponentManagerImpl 400 return dict && SetStateProperties(component_path, *dict, error); in SetStatePropertiesFromJson() 449 return SetStateProperties(component_path, dict, error); in SetStateProperty()
|
D | access_api_handler.cc | 224 device_->SetStateProperties(kComponent, state, nullptr); in UpdateState()
|
D | component_manager_unittest.cc | 908 TEST_F(ComponentManagerTest, SetStateProperties) { in TEST_F() argument 913 ASSERT_TRUE(manager_.SetStateProperties("comp1", *state1, nullptr)); in TEST_F() 944 ASSERT_TRUE(manager_.SetStateProperties("comp1", *state2, nullptr)); in TEST_F() 976 ASSERT_TRUE(manager_.SetStateProperties("comp1.comp2[1].comp3.comp4", *state3, in TEST_F()
|
/external/libweave/include/weave/test/ |
D | mock_device.h | 41 MOCK_METHOD3(SetStateProperties, 80 MOCK_METHOD2(SetStateProperties,
|
/external/libweave/include/weave/ |
D | device.h | 86 virtual bool SetStateProperties(const std::string& component, 213 LIBWEAVE_DEPRECATED virtual bool SetStateProperties(
|
/external/libweave/examples/daemon/speaker/ |
D | speaker.cc | 155 device_->SetStateProperties(kComponent, state, nullptr); in UpdateSpeakerState()
|
/external/libweave/src/privet/ |
D | privet_handler.cc | 175 void SetStateProperties(const T& state, base::DictionaryValue* parent) { in SetStateProperties() function 284 SetStateProperties(state, result.get()); in CreateWifiSection() 292 SetStateProperties(cloud.GetConnectionState(), gcd.get()); in CreateGcdSection() 824 SetStateProperties(state, gcd); in ReplyWithSetupStatus() 834 SetStateProperties(state, wifi); in ReplyWithSetupStatus()
|
/external/libweave/examples/daemon/oven/ |
D | oven.cc | 240 device_->SetStateProperties(kComponent, state, nullptr); in UpdateOvenState()
|
/external/libweave/examples/daemon/light/ |
D | light.cc | 292 device_->SetStateProperties(kComponent, state, nullptr); in UpdateLightState()
|