Home
last modified time | relevance | path

Searched refs:GetService (Results 1 – 25 of 33) sorted by relevance

12

/drivers/hdf_core/framework/core/manager/test/unittest/common/
Ddevmgr_uevent_test.cpp78 struct HdfRemoteService *sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
81 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
91 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
94 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
123 struct HdfRemoteService *sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
127 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
137 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
140 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
170 struct HdfRemoteService *sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
173 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
[all …]
/drivers/hdf_core/adapter/uhdf2/host/test/unittest/
Ddevmgr_test.cpp77 struct HdfRemoteService *sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
81 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
102 struct HdfRemoteService *sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
105 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
123 struct HdfRemoteService *sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
126 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
134 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
137 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
/drivers/hdf_core/adapter/uhdf2/hdi/test/servmgr/
Dservice_manager_hdi_c_test.cpp77 struct HdfRemoteService *sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
120 struct HdfRemoteService *sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
151 struct HdfRemoteService *sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
184 struct HdfRemoteService *sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
221 struct HdfRemoteService *sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
265 struct HdfRemoteService *sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
271 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
290 struct HdfRemoteService *sampleService2 = servmgr->GetService(servmgr, newServName);
321 sampleService2 = servmgr->GetService(servmgr, newServName);
329 sampleService = servmgr->GetService(servmgr, TEST_SERVICE_NAME);
[all …]
Dservice_manager_hdi_test.cpp100 auto sampleService = servmgr->GetService(TEST_SERVICE_NAME);
138 auto sampleService = servmgr->GetService(TEST_SERVICE_NAME);
161 auto sampleService = servmgr->GetService(TEST_SERVICE_NAME);
184 auto sampleService = servmgr->GetService(TEST_SERVICE_NAME);
224 auto sampleService = servmgr->GetService(TEST_SERVICE_NAME);
230 sampleService = servmgr->GetService(TEST_SERVICE_NAME);
245 auto sampleService2 = servmgr->GetService(newServName);
272 sampleService2 = servmgr->GetService(newServName);
278 sampleService = servmgr->GetService(TEST_SERVICE_NAME);
360 auto sampleService = servmgr->GetService(TEST_SERVICE_NAME);
[all …]
/drivers/peripheral/display/hdi_service/gralloc/client/
Dallocator_proxy.cpp54 sptr<IRemoteObject> remote = servMgr->GetService(serviceName); in Get()
61 remote = servMgr->GetService(serviceName); in Get()
/drivers/hdf_core/framework/core/shared/include/
Ddevsvc_manager_if.h24 struct HdfObject *(*GetService)(struct IDevSvcManager *, const char *); member
/drivers/hdf_core/interfaces/inner_api/hdi/
Dservmgr_hdi.h68 struct HdfRemoteService *(*GetService)(struct HDIServiceManager *self, const char *serviceName); member
Diservmgr_hdi.h86 virtual ::OHOS::sptr<IRemoteObject> GetService(const char *serviceName) = 0;
/drivers/hdf_core/framework/core/host/src/
Ddevsvc_manager_clnt.c67 if (serviceManager == NULL || serviceManager->GetService == NULL) { in DevSvcManagerClntGetService()
71 return serviceManager->GetService(serviceManager, svcName); in DevSvcManagerClntGetService()
/drivers/peripheral/usb/sample/device/linux/
Dacm_write.c52 g_acmService = servmgr->GetService(servmgr, "usbfn_cdcacm"); in AcmWrite()
Dacm_speed_read.c94 g_acmService = servmgr->GetService(servmgr, "usbfn_cdcacm"); in AcmSpeedRead()
Dacm_speed_write.c96 g_acmService = servmgr->GetService(servmgr, "usbfn_cdcacm"); in AcmSpeedWrite()
Dacm_read.c70 g_acmService = servmgr->GetService(servmgr, "usbfn_cdcacm"); in AcmRead()
Dprop_test.c50 g_acmService = servmgr->GetService(servmgr, ACM_SERVICE_NAME); in DispatcherInit()
Dacm_test.c162 g_acmService = servmgr->GetService(servmgr, "usbfn_cdcacm"); in AcmTest()
/drivers/hdf_core/adapter/uhdf2/host/src/
Ddevmgr_service_proxy.c172 if (serviceManagerIf->GetService == NULL) { in DevmgrServiceProxyCreate()
177 … (struct HdfRemoteService *)serviceManagerIf->GetService(serviceManagerIf, DEVICE_MANAGER_SERVICE); in DevmgrServiceProxyCreate()
Ddevsvc_manager_proxy.c232 inst->pvtbl.GetService = DevSvcManagerProxyGetService; in DevSvcManagerProxyConstruct()
/drivers/hdf_core/adapter/uhdf2/hdi/src/
Diservmgr_client.cpp45 sptr<IRemoteObject> GetService(const char *serviceName) override;
116 sptr<IRemoteObject> ServiceManagerProxy::GetService(const char *serviceName) in GetService() function in OHOS::HDI::ServiceManager::V1_0::ServiceManagerProxy
Didevmgr_client.cpp183 sptr<IRemoteObject> remote = servmgr->GetService("hdf_device_manager"); in Get()
Ddevmgr_client.c221 struct HdfRemoteService *remote = serviceMgr->GetService(serviceMgr, DEVICE_MANAGER_SERVICE); in HDIDeviceManagerGet()
Dservmgr_client.c213 inst->GetService = HDIServMgrGetService; in HDIServiceManagerConstruct()
/drivers/peripheral/usb/sample/host/src/
Dusbhost_ddk_test.c97 g_acmService = servmgr->GetService(servmgr, acmServiceName); in UsbHostDdkTestInit()
104 g_acmService = servmgr->GetService(servmgr, acmRawServiceName); in UsbHostDdkTestInit()
111 g_acmService = servmgr->GetService(servmgr, ecmServiceName); in UsbHostDdkTestInit()
/drivers/peripheral/bluetooth/audio/hal/hdi_binder/proxy/src/
Daudio_proxy_manager.cpp170 struct HdfRemoteService *remote = serviceMgr->GetService(serviceMgr, HDI_SERVER_NAME); in GetAudioProxyManagerFuncs()
/drivers/peripheral/codec/hal/src/
Dcodec_component_manager_proxy.c252 …struct HdfRemoteService *remoteOmx = serviceMgr->GetService(serviceMgr, CODEC_HDI_OMX_SERVICE_NAME… in InitCodecComponentManagerProxy()
/drivers/hdf_core/adapter/uhdf2/hdi/test/smq_test/
Dsmq_test.cpp249 auto sampleService = servmgr->GetService(SERVICE_NAME);

12