Lines Matching refs:hdfInputInterfacesHost
32 auto *hdfInputInterfacesHost = CONTAINER_OF(client->device->service, struct HdfInputInterfacesHost, ioService);
47 return hdfInputInterfacesHost->stub->SendRequest(cmdId, *dataParcel, *replyParcel, option);
60 auto *hdfInputInterfacesHost = new (std::nothrow) HdfInputInterfacesHost;
61 if (hdfInputInterfacesHost == nullptr) {
66 hdfInputInterfacesHost->ioService.Dispatch = InputInterfacesDriverDispatch;
67 hdfInputInterfacesHost->ioService.Open = nullptr;
68 hdfInputInterfacesHost->ioService.Release = nullptr;
73 delete hdfInputInterfacesHost;
77 hdfInputInterfacesHost->stub = OHOS::HDI::ObjectCollector::GetInstance().GetOrNewObject(serviceImpl,
79 if (hdfInputInterfacesHost->stub == nullptr) {
81 delete hdfInputInterfacesHost;
85 deviceObject->service = &hdfInputInterfacesHost->ioService;
97 auto *hdfInputInterfacesHost = CONTAINER_OF(deviceObject->service, struct HdfInputInterfacesHost, ioService);
98 delete hdfInputInterfacesHost;