Home
last modified time | relevance | path

Searched refs:FindComponentWithTrait (Results 1 – 8 of 8) sorted by relevance

/external/libweave/src/
Ddevice_manager.cc190 std::string component = component_manager_->FindComponentWithTrait(trait); in AddCommandHandler()
219 component_manager_->FindComponentWithTrait(it.key()); in SetStateProperties()
239 std::string component = component_manager_->FindComponentWithTrait(trait); in GetStateProperty()
249 std::string component = component_manager_->FindComponentWithTrait(trait); in SetStateProperty()
Dcomponent_manager.h209 virtual std::string FindComponentWithTrait(
Dmock_component_manager.h96 MOCK_CONST_METHOD1(FindComponentWithTrait,
Dcomponent_manager_unittest.cc1247 TEST_F(ComponentManagerTest, FindComponentWithTrait) { in TEST_F() argument
1259 EXPECT_EQ("comp1", manager_.FindComponentWithTrait("trait1")); in TEST_F()
1260 EXPECT_EQ("comp1", manager_.FindComponentWithTrait("trait2")); in TEST_F()
1261 EXPECT_EQ("comp2", manager_.FindComponentWithTrait("trait3")); in TEST_F()
1262 EXPECT_EQ("", manager_.FindComponentWithTrait("trait4")); in TEST_F()
Dcomponent_manager_impl.h175 std::string FindComponentWithTrait(const std::string& trait) const override;
Dcomponent_manager_impl.cc247 component_path = FindComponentWithTrait(trait_name); in ParseCommandInstance()
488 std::string ComponentManagerImpl::FindComponentWithTrait( in FindComponentWithTrait() function in weave::ComponentManagerImpl
618 if (!FindComponentWithTrait(trait).empty()) in AddTraitToLegacyComponent()
Dbase_api_handler_unittest.cc81 std::string path = component_manager_.FindComponentWithTrait("base"); in GetBaseState()
Daccess_api_handler_unittest.cc93 component_manager_.FindComponentWithTrait("_accessControlBlackList"); in GetState()