Lines Matching refs:hdfUsbInterfaceHost
56 auto *hdfUsbInterfaceHost = CONTAINER_OF(client->device->service, struct HdfUsbInterfaceHost, ioService);
57 if (hdfUsbInterfaceHost == nullptr || hdfUsbInterfaceHost->stub == nullptr) {
61 return hdfUsbInterfaceHost->stub->SendRequest(cmdId, *dataParcel, *replyParcel, option);
79 auto *hdfUsbInterfaceHost = new (std::nothrow) HdfUsbInterfaceHost;
80 if (hdfUsbInterfaceHost == nullptr) {
85 hdfUsbInterfaceHost->ioService.Dispatch = UsbInterfaceDriverDispatch;
86 hdfUsbInterfaceHost->ioService.Open = nullptr;
87 hdfUsbInterfaceHost->ioService.Release = nullptr;
92 delete hdfUsbInterfaceHost;
93 hdfUsbInterfaceHost = nullptr;
97 hdfUsbInterfaceHost->stub =
100 if (hdfUsbInterfaceHost->stub == nullptr) {
102 delete hdfUsbInterfaceHost;
103 hdfUsbInterfaceHost = nullptr;
112 hdfUsbInterfaceHost->stub = nullptr;
113 delete hdfUsbInterfaceHost;
114 hdfUsbInterfaceHost = nullptr;
118 deviceObject->service = &hdfUsbInterfaceHost->ioService;
134 auto *hdfUsbInterfaceHost = CONTAINER_OF(deviceObject->service, struct HdfUsbInterfaceHost, ioService);
135 if (hdfUsbInterfaceHost == nullptr) {
139 delete hdfUsbInterfaceHost;
140 hdfUsbInterfaceHost = nullptr;