Home
last modified time | relevance | path

Searched refs:hostServiceIf (Results 1 – 3 of 3) sorted by relevance

/drivers/hdf_core/framework/core/manager/src/
Dhdf_driver_installer.c18 struct IDevHostService *hostServiceIf = DevHostServiceNewInstance(devHostId, devHostName); in DriverInstallerStartDeviceHost() local
21 if ((hostServiceIf == NULL) || (hostServiceIf->StartService == NULL)) { in DriverInstallerStartDeviceHost()
25 ret = hostServiceIf->StartService(hostServiceIf); in DriverInstallerStartDeviceHost()
28 DevHostServiceFreeInstance(hostServiceIf); in DriverInstallerStartDeviceHost()
/drivers/hdf_core/adapter/uhdf2/host/src/
Ddevhost_service_full.c204 struct IDevHostService *hostServiceIf = &inst->super.super; in DevHostServiceFullConstruct() local
207 hostServiceIf->AddDevice = DevHostServiceFullAddDevice; in DevHostServiceFullConstruct()
208 hostServiceIf->DelDevice = DevHostServiceFullDelDevice; in DevHostServiceFullConstruct()
209 hostServiceIf->StartService = DevHostServiceFullStartService; in DevHostServiceFullConstruct()
210 hostServiceIf->PmNotify = DevHostServiceFullPmNotify; in DevHostServiceFullConstruct()
/drivers/hdf_core/framework/core/host/src/
Ddevhost_service.c222 struct IDevHostService *hostServiceIf = &service->super; in DevHostServiceConstruct() local
223 hostServiceIf->AddDevice = DevHostServiceAddDevice; in DevHostServiceConstruct()
224 hostServiceIf->DelDevice = DevHostServiceDelDevice; in DevHostServiceConstruct()
225 hostServiceIf->StartService = DevHostServiceStartService; in DevHostServiceConstruct()
226 hostServiceIf->PmNotify = DevHostServicePmNotify; in DevHostServiceConstruct()