Home
last modified time | relevance | path

Searched refs:inst (Results 1 - 25 of 49) sorted by relevance

12

/drivers/hdf_core/framework/core/host/src/
H A Ddevmgr_service_clnt.c20 struct DevmgrServiceClnt *inst = DevmgrServiceClntGetInstance(); in DevmgrServiceClntAttachDeviceHost() local
21 if (inst == NULL || inst->devMgrSvcIf == NULL) { in DevmgrServiceClntAttachDeviceHost()
26 devMgrSvcIf = inst->devMgrSvcIf; in DevmgrServiceClntAttachDeviceHost()
37 struct DevmgrServiceClnt *inst = DevmgrServiceClntGetInstance(); in DevmgrServiceClntAttachDevice() local
38 if ((inst == NULL) || (inst->devMgrSvcIf == NULL)) { in DevmgrServiceClntAttachDevice()
39 HDF_LOGE("devmgr client failed to attach device, inst is null"); in DevmgrServiceClntAttachDevice()
43 devMgrSvcIf = inst->devMgrSvcIf; in DevmgrServiceClntAttachDevice()
54 struct DevmgrServiceClnt *inst in DevmgrServiceClntDetachDevice() local
76 DevmgrServiceClntFreeInstance(struct DevmgrServiceClnt *inst) DevmgrServiceClntFreeInstance() argument
[all...]
H A Dhdf_driver_loader.c56 void HdfDriverLoaderConstruct(struct HdfDriverLoader *inst) in HdfDriverLoaderConstruct() argument
58 if (inst != NULL) { in HdfDriverLoaderConstruct()
59 inst->super.GetDriver = HdfDriverLoaderGetDriver; in HdfDriverLoaderConstruct()
60 inst->super.ReclaimDriver = HdfDriverLoaderReclaimDriver; in HdfDriverLoaderConstruct()
H A Ddevhost_service.c46 static struct HdfDevice *DevHostServiceQueryOrAddDevice(struct DevHostService *inst, uint16_t deviceId) in DevHostServiceQueryOrAddDevice() argument
48 struct HdfDevice *device = DevHostServiceFindDevice(inst, deviceId); in DevHostServiceQueryOrAddDevice()
56 device->deviceId = MK_DEVID(inst->hostId, deviceId, 0); in DevHostServiceQueryOrAddDevice()
57 DListInsertHead(&device->node, &inst->devices); in DevHostServiceQueryOrAddDevice()
63 int DevHostServiceAddDevice(struct IDevHostService *inst, const struct HdfDeviceInfo *deviceInfo) in DevHostServiceAddDevice() argument
69 struct DevHostService *hostService = CONTAINER_OF(inst, struct DevHostService, super); in DevHostServiceAddDevice()
72 if (inst == NULL || deviceInfo == NULL || driverLoader == NULL || driverLoader->GetDriver == NULL) { in DevHostServiceAddDevice()
121 int DevHostServiceDelDevice(struct IDevHostService *inst, devid_t devId) in DevHostServiceDelDevice() argument
124 struct DevHostService *hostService = (struct DevHostService *)inst; in DevHostServiceDelDevice()
/drivers/hdf_core/adapter/uhdf2/manager/src/
H A Ddevhost_service_proxy.c28 struct IDevHostService *inst, const struct HdfDeviceInfo *attribute, int opsCode) in DevHostServiceProxyOpsDevice()
32 struct DevHostServiceProxy *hostClnt = (struct DevHostServiceProxy *)inst; in DevHostServiceProxyOpsDevice()
46 struct IDevHostService *inst, const struct HdfDeviceInfo *attribute) in DevHostServiceProxyAddDevice()
48 return DevHostServiceProxyOpsDevice(inst, attribute, DEVHOST_SERVICE_ADD_DEVICE); in DevHostServiceProxyAddDevice()
52 struct IDevHostService *inst, devid_t devid) in DevHostServiceProxyDelDevice()
56 struct DevHostServiceProxy *hostClnt = (struct DevHostServiceProxy *)inst; in DevHostServiceProxyDelDevice()
93 static int32_t DevHostServicProxyDump(struct IDevHostService *inst, struct HdfSBuf *data, struct HdfSBuf *reply) in DevHostServicProxyDump() argument
95 struct DevHostServiceProxy *hostClnt = (struct DevHostServiceProxy *)inst; in DevHostServicProxyDump()
106 struct DevHostServiceProxy *inst, struct HdfRemoteService *remote) in DevHostServiceProxyConstruct()
108 inst in DevHostServiceProxyConstruct()
27 DevHostServiceProxyOpsDevice( struct IDevHostService *inst, const struct HdfDeviceInfo *attribute, int opsCode) DevHostServiceProxyOpsDevice() argument
45 DevHostServiceProxyAddDevice( struct IDevHostService *inst, const struct HdfDeviceInfo *attribute) DevHostServiceProxyAddDevice() argument
51 DevHostServiceProxyDelDevice( struct IDevHostService *inst, devid_t devid) DevHostServiceProxyDelDevice() argument
105 DevHostServiceProxyConstruct( struct DevHostServiceProxy *inst, struct HdfRemoteService *remote) DevHostServiceProxyConstruct() argument
131 DevHostServiceProxyRecycle(struct DevHostServiceProxy *inst) DevHostServiceProxyRecycle() argument
[all...]
H A Ddevice_token_proxy.c19 static void HdfDevTokenProxyConstruct(struct HdfDevTokenProxy *inst, struct HdfRemoteService *remote) in HdfDevTokenProxyConstruct() argument
21 inst->remote = remote; in HdfDevTokenProxyConstruct()
34 void HdfDevTokenProxyRecycle(struct HdfDevTokenProxy *inst) in HdfDevTokenProxyRecycle() argument
36 if (inst != NULL) { in HdfDevTokenProxyRecycle()
37 if (inst->remote != NULL) { in HdfDevTokenProxyRecycle()
38 HdfRemoteServiceRecycle(inst->remote); in HdfDevTokenProxyRecycle()
39 inst->remote = NULL; in HdfDevTokenProxyRecycle()
41 OsalMemFree((void *)inst->super.servName); in HdfDevTokenProxyRecycle()
42 OsalMemFree((void *)inst->super.deviceName); in HdfDevTokenProxyRecycle()
43 OsalMemFree(inst); in HdfDevTokenProxyRecycle()
[all...]
H A Ddevmgr_service_full.c63 static void DevmgrServiceFullOnDeviceHostDied(struct DevmgrServiceFull *inst, uint32_t hostId, in DevmgrServiceFullOnDeviceHostDied() argument
68 if (inst == NULL) { in DevmgrServiceFullOnDeviceHostDied()
71 OsalMutexLock(&inst->super.devMgrMutex); in DevmgrServiceFullOnDeviceHostDied()
72 DLIST_FOR_EACH_ENTRY_SAFE(hostClnt, hostClntTmp, &inst->super.hosts, struct DevHostServiceClnt, node) { in DevmgrServiceFullOnDeviceHostDied()
81 OsalMutexUnlock(&inst->super.devMgrMutex); in DevmgrServiceFullOnDeviceHostDied()
114 void DevmgrServiceFullConstruct(struct DevmgrServiceFull *inst) in DevmgrServiceFullConstruct() argument
117 if (inst != NULL) { in DevmgrServiceFullConstruct()
118 HdfMessageLooperConstruct(&inst->looper); in DevmgrServiceFullConstruct()
119 DevmgrServiceConstruct(&inst->super); in DevmgrServiceFullConstruct()
120 HdfMessageTaskConstruct(&inst in DevmgrServiceFullConstruct()
[all...]
H A Ddevsvc_manager_stub.c603 struct DevSvcManagerStub *inst = (struct DevSvcManagerStub *)svcmgr; in DevSvcManagerStubStart() local
604 if (inst == NULL) { in DevSvcManagerStubStart()
608 if (inst->started) { in DevSvcManagerStubStart()
615 inst->remote = HdfRemoteServiceObtain((struct HdfObject *)inst, &dispatcher); in DevSvcManagerStubStart()
616 if (inst->remote == NULL) { in DevSvcManagerStubStart()
620 if (!HdfRemoteServiceSetInterfaceDesc(inst->remote, "HDI.IServiceManager.V1_0")) { in DevSvcManagerStubStart()
622 HdfRemoteServiceRecycle(inst->remote); in DevSvcManagerStubStart()
626 inst->recipient.OnRemoteDied = DevSvcManagerOnServiceDied; in DevSvcManagerStubStart()
627 int ret = HdfRemoteServiceRegister(DEVICE_SERVICE_MANAGER_SA_ID, inst in DevSvcManagerStubStart()
640 DevSvcManagerStubConstruct(struct DevSvcManagerStub *inst) DevSvcManagerStubConstruct() argument
[all...]
/drivers/hdf_core/framework/core/shared/src/
H A Dhdf_service_record.c17 void DevSvcRecordFreeInstance(struct DevSvcRecord *inst) in DevSvcRecordFreeInstance() argument
19 if (inst != NULL) { in DevSvcRecordFreeInstance()
20 OsalMemFree((char *)inst->servName); in DevSvcRecordFreeInstance()
21 OsalMemFree((char *)inst->servInfo); in DevSvcRecordFreeInstance()
22 OsalMemFree((char *)inst->interfaceDesc); in DevSvcRecordFreeInstance()
23 OsalMemFree(inst); in DevSvcRecordFreeInstance()
/drivers/hdf_core/framework/core/manager/src/
H A Ddevsvc_manager_ext.c127 struct DevSvcManagerExt *inst = (struct DevSvcManagerExt *)svcmgr; in DevSvcManagerExtStart() local
134 if (inst == NULL) { in DevSvcManagerExtStart()
138 if (inst->started) { in DevSvcManagerExtStart()
147 inst->serv = HdfIoServicePublish(DEV_SVCMGR_NODE, SVC_MGR_NODE_PERM); in DevSvcManagerExtStart()
148 if (inst->serv == NULL) { in DevSvcManagerExtStart()
154 inst->serv->dispatcher = &dispatcher; in DevSvcManagerExtStart()
155 inst->serv->target = (struct HdfObject *)&svcmgrDevObj; in DevSvcManagerExtStart()
159 inst->started = true; in DevSvcManagerExtStart()
163 static bool DevSvcManagerExtConstruct(struct DevSvcManagerExt *inst) in DevSvcManagerExtConstruct() argument
165 if (inst in DevSvcManagerExtConstruct()
197 DevSvcManagerExtRelease(struct IDevSvcManager *inst) DevSvcManagerExtRelease() argument
[all...]
H A Ddevsvc_manager.c22 static struct DevSvcRecord *DevSvcManagerSearchServiceLocked(struct IDevSvcManager *inst, uint32_t serviceKey) in DevSvcManagerSearchServiceLocked() argument
26 struct DevSvcManager *devSvcManager = (struct DevSvcManager *)inst; in DevSvcManagerSearchServiceLocked()
85 int DevSvcManagerAddService(struct IDevSvcManager *inst, in DevSvcManagerAddService() argument
88 struct DevSvcManager *devSvcManager = (struct DevSvcManager *)inst; in DevSvcManagerAddService()
95 record = DevSvcManagerSearchServiceLocked(inst, HdfStringMakeHashKey(servInfo->servName, 0)); in DevSvcManagerAddService()
131 int DevSvcManagerUpdateService(struct IDevSvcManager *inst, in DevSvcManagerUpdateService() argument
134 struct DevSvcManager *devSvcManager = (struct DevSvcManager *)inst; in DevSvcManagerUpdateService()
142 record = DevSvcManagerSearchServiceLocked(inst, HdfStringMakeHashKey(servInfo->servName, 0)); in DevSvcManagerUpdateService()
166 int DevSvcManagerSubscribeService(struct IDevSvcManager *inst, const char *svcName, struct SubscriberCallback callBack) in DevSvcManagerSubscribeService() argument
170 if (inst in DevSvcManagerSubscribeService()
185 DevSvcManagerRemoveService(struct IDevSvcManager *inst, const char *svcName, const struct HdfDeviceObject *devObj) DevSvcManagerRemoveService() argument
215 DevSvcManagerGetObject(struct IDevSvcManager *inst, const char *svcName) DevSvcManagerGetObject() argument
255 DevSvcManagerGetService(struct IDevSvcManager *inst, const char *svcName) DevSvcManagerGetService() argument
264 DevSvcManagerListAllService(struct IDevSvcManager *inst, struct HdfSBuf *reply) DevSvcManagerListAllService() argument
283 DevSvcManagerListServiceByInterfaceDesc( struct IDevSvcManager *inst, const char *interfaceDesc, struct HdfSBuf *reply) DevSvcManagerListServiceByInterfaceDesc() argument
327 DevSvcManagerRegsterServListener(struct IDevSvcManager *inst, struct ServStatListenerHolder *listenerHolder) DevSvcManagerRegsterServListener() argument
342 DevSvcManagerUnregsterServListener(struct IDevSvcManager *inst, struct ServStatListenerHolder *listenerHolder) DevSvcManagerUnregsterServListener() argument
354 DevSvcManagerConstruct(struct DevSvcManager *inst) DevSvcManagerConstruct() argument
415 DevSvcManagerRelease(struct IDevSvcManager *inst) DevSvcManagerRelease() argument
[all...]
H A Ddevmgr_service.c224 static struct DevHostServiceClnt *DevmgrServiceFindDeviceHost(struct IDevmgrService *inst, uint16_t hostId) in DevmgrServiceFindDeviceHost() argument
227 struct DevmgrService *dmService = (struct DevmgrService *)inst; in DevmgrServiceFindDeviceHost()
242 static int DevmgrServiceAttachDevice(struct IDevmgrService *inst, struct IHdfDeviceToken *token) in DevmgrServiceAttachDevice() argument
250 hostClnt = DevmgrServiceFindDeviceHost(inst, HOSTID(token->devid)); in DevmgrServiceAttachDevice()
271 static int DevmgrServiceDetachDevice(struct IDevmgrService *inst, devid_t devid) in DevmgrServiceDetachDevice() argument
277 hostClnt = DevmgrServiceFindDeviceHost(inst, HOSTID(devid)); in DevmgrServiceDetachDevice()
293 struct IDevmgrService *inst, uint16_t hostId, struct IDevHostService *hostService) in DevmgrServiceAttachDeviceHost()
295 struct DevHostServiceClnt *hostClnt = DevmgrServiceFindDeviceHost(inst, hostId); in DevmgrServiceAttachDeviceHost()
340 static int DevmgrServiceStartDeviceHosts(struct DevmgrService *inst) in DevmgrServiceStartDeviceHosts() argument
355 ret = DevmgrServiceStartDeviceHost(inst, hostAtt in DevmgrServiceStartDeviceHosts()
292 DevmgrServiceAttachDeviceHost( struct IDevmgrService *inst, uint16_t hostId, struct IDevHostService *hostService) DevmgrServiceAttachDeviceHost() argument
365 DevmgrServiceListAllDevice(struct IDevmgrService *inst, struct HdfSBuf *reply) DevmgrServiceListAllDevice() argument
401 DevmgrServiceListAllHost(struct IDevmgrService *inst, struct HdfSBuf *reply) DevmgrServiceListAllHost() argument
425 DevmgrServiceStartService(struct IDevmgrService *inst) DevmgrServiceStartService() argument
479 DevmgrServiceConstruct(struct DevmgrService *inst) DevmgrServiceConstruct() argument
[all...]
/drivers/hdf_core/framework/core/manager/include/
H A Ddevsvc_manager.h26 bool DevSvcManagerConstruct(struct DevSvcManager *inst);
27 void DevSvcManagerRelease(struct IDevSvcManager *inst);
33 struct IDevSvcManager *inst, struct HdfDeviceObject *service, const struct HdfServiceInfo *servInfo);
34 struct HdfObject *DevSvcManagerGetService(struct IDevSvcManager *inst, const char *svcName);
36 struct IDevSvcManager *inst, const char *svcName, const struct HdfDeviceObject *devObj);
39 struct IDevSvcManager *inst, const char *interfaceDesc, struct HdfSBuf *reply);
H A Ddevmgr_service.h22 int DevmgrServiceStartService(struct IDevmgrService *inst);
23 bool DevmgrServiceConstruct(struct DevmgrService *inst);
/drivers/hdf_core/adapter/uhdf2/host/src/
H A Dhdf_device_thread.c50 int DeviceThreadAttach(struct DeviceThread *inst, struct IHdfDevice *device, struct HdfDeviceNode *service) in DeviceThreadAttach() argument
52 if (inst == NULL || device == NULL || service == NULL) { in DeviceThreadAttach()
57 struct HdfMessageTask *task = &inst->task; in DeviceThreadAttach()
80 void DeviceThreadConstruct(struct DeviceThread *inst) in DeviceThreadConstruct() argument
86 HdfMessageLooperConstruct(&inst->looper); in DeviceThreadConstruct()
87 HdfMessageTaskConstruct(&inst->task, &inst->looper, &handler); in DeviceThreadConstruct()
88 inst->super.ThreadEntry = DeviceThreadMain; in DeviceThreadConstruct()
89 HdfThreadConstruct(&inst->super); in DeviceThreadConstruct()
H A Ddevhost_service_full.c65 struct DevHostServiceFull *inst = (struct DevHostServiceFull *)devHostService; in DevHostServiceFullOpsDevice() local
66 struct HdfMessageTask *task = &inst->task; in DevHostServiceFullOpsDevice()
202 void DevHostServiceFullConstruct(struct DevHostServiceFull *inst) in DevHostServiceFullConstruct() argument
204 struct IDevHostService *hostServiceIf = &inst->super.super; in DevHostServiceFullConstruct()
206 DevHostServiceConstruct(&inst->super); in DevHostServiceFullConstruct()
211 HdfMessageLooperConstruct(&inst->looper); in DevHostServiceFullConstruct()
212 HdfMessageTaskConstruct(&inst->task, &inst->looper, &handler); in DevHostServiceFullConstruct()
215 void DevHostServiceFullDestruct(struct DevHostServiceFull *inst) in DevHostServiceFullDestruct() argument
217 if (inst ! in DevHostServiceFullDestruct()
[all...]
H A Ddevmgr_service_proxy.c28 int DevmgrServiceProxyAttachDeviceHost(struct IDevmgrService *inst, uint16_t hostId, struct IDevHostService *service) in DevmgrServiceProxyAttachDeviceHost() argument
35 struct DevmgrServiceProxy *serviceProxy = (struct DevmgrServiceProxy *)inst; in DevmgrServiceProxyAttachDeviceHost()
67 int DevmgrServiceProxyAttachDevice(struct IDevmgrService *inst, struct IHdfDeviceToken *token) in DevmgrServiceProxyAttachDevice() argument
72 struct DevmgrServiceProxy *serviceProxy = (struct DevmgrServiceProxy *)inst; in DevmgrServiceProxyAttachDevice()
92 int DevmgrServiceProxyDetachDevice(struct IDevmgrService *inst, devid_t devid) in DevmgrServiceProxyDetachDevice() argument
97 struct DevmgrServiceProxy *serviceProxy = (struct DevmgrServiceProxy *)inst; in DevmgrServiceProxyDetachDevice()
114 static int DevmgrServiceProxyProcessLoad(struct IDevmgrService *inst, const char *svcName, int code) in DevmgrServiceProxyProcessLoad() argument
116 struct DevmgrServiceProxy *serviceProxy = (struct DevmgrServiceProxy *)inst; in DevmgrServiceProxyProcessLoad()
134 int DevmgrServiceProxyLoadDevice(struct IDevmgrService *inst, const char *svcName) in DevmgrServiceProxyLoadDevice() argument
136 return DevmgrServiceProxyProcessLoad(inst, svcNam in DevmgrServiceProxyLoadDevice()
139 DevmgrServiceProxyUnLoadDevice(struct IDevmgrService *inst, const char *svcName) DevmgrServiceProxyUnLoadDevice() argument
144 DevmgrServiceProxyConstruct(struct DevmgrServiceProxy *inst) DevmgrServiceProxyConstruct() argument
[all...]
H A Ddevsvc_manager_proxy.c73 struct IDevSvcManager *inst, struct HdfDeviceObject *service, const struct HdfServiceInfo *servInfo) in DevSvcManagerProxyAddService()
75 struct DevSvcManagerProxy *serviceProxy = (struct DevSvcManagerProxy *)inst; in DevSvcManagerProxyAddService()
112 static int DevSvcManagerProxyUpdateService(struct IDevSvcManager *inst, in DevSvcManagerProxyUpdateService() argument
115 struct DevSvcManagerProxy *serviceProxy = (struct DevSvcManagerProxy *)inst; in DevSvcManagerProxyUpdateService()
152 struct HdfObject *DevSvcManagerProxyGetService(struct IDevSvcManager *inst, const char *svcName) in DevSvcManagerProxyGetService() argument
159 struct DevSvcManagerProxy *serviceProxy = (struct DevSvcManagerProxy *)inst; in DevSvcManagerProxyGetService()
181 void DevSvcManagerProxyRemoveService(struct IDevSvcManager *inst, const char *svcName, in DevSvcManagerProxyRemoveService() argument
185 if (inst == NULL || svcName == NULL) { in DevSvcManagerProxyRemoveService()
192 struct DevSvcManagerProxy *serviceProxy = (struct DevSvcManagerProxy *)inst; in DevSvcManagerProxyRemoveService()
230 void DevSvcManagerProxyConstruct(struct DevSvcManagerProxy *inst, struc argument
72 DevSvcManagerProxyAddService( struct IDevSvcManager *inst, struct HdfDeviceObject *service, const struct HdfServiceInfo *servInfo) DevSvcManagerProxyAddService() argument
[all...]
H A Ddevhost_service_stub.c113 static void DevHostServiceStubConstruct(struct DevHostServiceStub *inst) in DevHostServiceStubConstruct() argument
117 DevHostServiceFullConstruct(&inst->super); in DevHostServiceStubConstruct()
118 inst->remote = HdfRemoteServiceObtain((struct HdfObject *)inst, &dispatcher); in DevHostServiceStubConstruct()
120 OsalMutexInit(&inst->hostSvcMutex); in DevHostServiceStubConstruct()
/drivers/hdf_core/adapter/khdf/liteos_m/core/common/src/
H A Dhdf_device_node_ext.c42 static int DeviceNodeExtPublishService(struct HdfDeviceNode *inst) in DeviceNodeExtPublishService() argument
44 struct DeviceNodeExt *devNodeExt = (struct DeviceNodeExt *)inst; in DeviceNodeExtPublishService()
49 int ret = HdfDeviceNodePublishPublicService(inst); in DeviceNodeExtPublishService()
57 static void DeviceNodeExtConstruct(struct DeviceNodeExt *inst) in DeviceNodeExtConstruct() argument
59 struct IDeviceNode *nodeIf = (struct IDeviceNode *)inst; in DeviceNodeExtConstruct()
61 HdfDeviceNodeConstruct(&inst->super); in DeviceNodeExtConstruct()
/drivers/hdf_core/adapter/khdf/uniproton/core/common/src/
H A Dhdf_device_node_ext.c38 static int DeviceNodeExtPublishService(struct HdfDeviceNode *inst) in DeviceNodeExtPublishService() argument
40 struct DeviceNodeExt *devNodeExt = (struct DeviceNodeExt *)inst; in DeviceNodeExtPublishService()
45 int ret = HdfDeviceNodePublishPublicService(inst); in DeviceNodeExtPublishService()
53 static void DeviceNodeExtConstruct(struct DeviceNodeExt *inst) in DeviceNodeExtConstruct() argument
55 struct IDeviceNode *nodeIf = (struct IDeviceNode *)inst; in DeviceNodeExtConstruct()
57 HdfDeviceNodeConstruct(&inst->super); in DeviceNodeExtConstruct()
/drivers/hdf_core/framework/utils/src/
H A Dhdf_message_task.c49 void HdfMessageTaskConstruct(struct HdfMessageTask *inst, in HdfMessageTaskConstruct() argument
52 if (inst != NULL && looper != NULL) { in HdfMessageTaskConstruct()
53 inst->SendMessage = HdfMessageTaskSendMessage; in HdfMessageTaskConstruct()
54 inst->messageHandler = handler; in HdfMessageTaskConstruct()
55 inst->messageQueue = &looper->messageQueue; in HdfMessageTaskConstruct()
56 inst->DispatchMessage = HdfMessageTaskDispatchMessage; in HdfMessageTaskConstruct()
H A Dhdf_cstring.c51 void HdfCStringRecycle(struct HdfCString *inst) in HdfCStringRecycle() argument
53 if (inst != NULL) { in HdfCStringRecycle()
54 OsalMemFree(inst); in HdfCStringRecycle()
/drivers/hdf_core/adapter/uhdf2/host/include/
H A Ddevhost_service_full.h36 void DevHostServiceFullConstruct(struct DevHostServiceFull *inst);
37 void DevHostServiceFullDestruct(struct DevHostServiceFull *inst);
/drivers/hdf_core/framework/test/fuzztest/uhdf2_utils_fuzzer/hdfxcollie_fuzzer/
H A Dhdfxcollie_fuzzer.cpp18 ::OHOS::HdfXCollie& inst = ::OHOS::HdfXCollie::GetInstance(); in HdfXCollieFuzzTest() local
19 (void)inst; in HdfXCollieFuzzTest()
/drivers/hdf_core/framework/core/host/include/
H A Ddevhost_service.h32 int DevHostServiceAddDevice(struct IDevHostService *inst, const struct HdfDeviceInfo *deviceInfo);
33 int DevHostServiceDelDevice(struct IDevHostService *inst, devid_t devId);

Completed in 15 milliseconds

12