HomeSort by relevance Sort by last modified time
    Searched refs:AddComponent (Results 1 - 25 of 29) sorted by null

1 2

  /external/libweave/src/
component_manager_unittest.cc 83 EXPECT_TRUE(manager->AddComponent("", "comp1", {"t1"}, nullptr));
89 manager->AddComponent("comp1.comp2[1]", "comp3", {"t4"}, nullptr));
90 EXPECT_TRUE(manager->AddComponent("comp1.comp2[1].comp3", "comp4",
441 TEST_F(ComponentManagerTest, AddComponent) {
446 manager_.AddComponent("", "comp1", {"trait1", "trait2"}, nullptr));
447 EXPECT_TRUE(manager_.AddComponent("", "comp2", {"trait3"}, nullptr));
459 EXPECT_FALSE(manager_.AddComponent("", "comp3", {"trait4"}, nullptr));
463 EXPECT_TRUE(manager_.AddComponent("", "comp1", {}, nullptr));
464 EXPECT_TRUE(manager_.AddComponent("comp1", "comp2", {}, nullptr));
465 EXPECT_TRUE(manager_.AddComponent("comp1", "comp3", {}, nullptr))
    [all...]
access_api_handler_unittest.cc 57 EXPECT_CALL(device_, AddComponent(_, _, _))
61 return component_manager_.AddComponent("", name, traits, error);
base_api_handler_unittest.cc 44 EXPECT_CALL(device_, AddComponent(_, _, _))
48 return component_manager_.AddComponent("", name, traits, error);
base_api_handler.cc 100 CHECK(device_->AddComponent(kBaseComponent, {kBaseTrait}, nullptr));
component_manager.h 74 virtual bool AddComponent(const std::string& path,
device_manager.h 45 bool AddComponent(const std::string& name,
mock_component_manager.h 21 MOCK_METHOD4(AddComponent,
device_manager.cc 109 bool DeviceManager::AddComponent(const std::string& name,
112 return component_manager_->AddComponent("", name, traits, error);
access_api_handler.cc 118 CHECK(device_->AddComponent(kComponent, {kTrait}, nullptr));
component_manager_impl.h 37 bool AddComponent(const std::string& path,
weave_unittest.cc 316 device_->AddComponent("myComponent", {"trait1", "trait2"}, nullptr));
376 device_->AddComponent("myComponent", {"trait1", "trait2"}, nullptr));
  /system/weaved/libweaved/
service.h 61 virtual bool AddComponent(const std::string& component,
service.cc 179 bool AddComponent(const std::string& component,
309 bool ServiceImpl::AddComponent(const std::string& component,
319 return StatusToError(weave_service_->addComponent(to_string16(component),
  /external/libweave/include/weave/test/
mock_device.h 29 MOCK_METHOD3(AddComponent,
  /system/update_engine/
weave_service.cc 55 weave_service->AddComponent(kWeaveComponent, {kWeaveTrait}, nullptr);
  /system/weaved/buffet/
binder_weave_service.cc 44 android::binder::Status BinderWeaveService::addComponent(
52 if (!device_->AddComponent(component_name, supported_traits, &error))
  /external/libweave/examples/daemon/ledflasher/
ledflasher.cc 65 CHECK(device->AddComponent(kComponent, {"_ledflasher"}, nullptr));
  /external/libweave/examples/daemon/lock/
lock.cc 75 CHECK(device->AddComponent(kComponent, {"lock"}, nullptr));
  /external/libweave/examples/daemon/sample/
sample.cc 65 CHECK(device->AddComponent(kComponent, {"_sample"}, nullptr));
  /external/libweave/examples/daemon/speaker/
speaker.cc 77 CHECK(device->AddComponent(kComponent, {"onOff", "volume"}, nullptr));
  /external/libweave/include/weave/
device.h 61 virtual bool AddComponent(const std::string& name,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dpaddr.h 245 STDMETHOD(AddComponent)(THIS_ CONST WCHAR* CONST pwszName, CONST void* CONST lpvData, CONST DWORD dwDataSize, CONST DWORD dwDataType) PURE;
274 #define IDirectPlay8Address_AddComponent(p,a,b,c,d) (p)->lpVtbl->AddComponent(p,a,b,c,d)
299 #define IDirectPlay8Address_AddComponent(p,a,b,c,d) (p)->AddComponent(a,b,c,d)
vsbackup.h 131 STDMETHOD_(HRESULT,AddComponent)(THIS_ VSS_ID instanceId,VSS_ID writerId,VSS_COMPONENT_TYPE componentType,LPCWSTR wszLogicalPath,LPCWSTR wszComponentName) PURE;
185 #define IVssBackupComponents_AddComponent(This,instanceId,writerId,componentType,wszLogicalPath,wszComponentName) (This)->lpVtbl->AddComponent(This,instanceId,writerId,componentType,wszLogicalPath,wszComponentName)
252 STDMETHOD_(HRESULT,AddComponent)(THIS_ VSS_ID instanceId,VSS_ID writerId,VSS_COMPONENT_TYPE componentType,LPCWSTR wszLogicalPath,LPCWSTR wszComponentName) PURE;
310 #define IVssBackupComponentsEx_AddComponent(This,instanceId,writerId,componentType,wszLogicalPath,wszComponentName) (This)->lpVtbl->AddComponent(This,instanceId,writerId,componentType,wszLogicalPath,wszComponentName)
    [all...]
  /external/libweave/examples/daemon/light/
light.cc 181 CHECK(device->AddComponent(kComponent, {"onOff", "brightness", "colorXY"},
  /external/libweave/examples/daemon/oven/
oven.cc 149 CHECK(device->AddComponent(

Completed in 1205 milliseconds

1 2