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