Lines Matching refs:hdfChipControllerHost
34 auto *hdfChipControllerHost = CONTAINER_OF(client->device->service, struct HdfChipControllerHost, ioService);
49 return hdfChipControllerHost->stub->SendRequest(cmdId, *dataParcel, *replyParcel, option);
61 auto *hdfChipControllerHost = new (std::nothrow) HdfChipControllerHost;
62 if (hdfChipControllerHost == nullptr) {
67 hdfChipControllerHost->ioService.Dispatch = ChipControllerDriverDispatch;
68 hdfChipControllerHost->ioService.Open = NULL;
69 hdfChipControllerHost->ioService.Release = NULL;
74 delete hdfChipControllerHost;
78 hdfChipControllerHost->stub = OHOS::HDI::ObjectCollector::GetInstance().GetOrNewObject(serviceImpl,
80 if (hdfChipControllerHost->stub == nullptr) {
82 delete hdfChipControllerHost;
86 deviceObject->service = &hdfChipControllerHost->ioService;
97 auto *hdfChipControllerHost = CONTAINER_OF(deviceObject->service, struct HdfChipControllerHost, ioService);
98 if (hdfChipControllerHost != nullptr) {
99 delete hdfChipControllerHost;