Lines Matching defs:hdfGnssInterfaceHost
40 auto *hdfGnssInterfaceHost = CONTAINER_OF(client->device->service, struct HdfGnssInterfaceHost, ioService);
55 return hdfGnssInterfaceHost->stub->SendRequest(cmdId, *dataParcel, *replyParcel, option);
68 auto *hdfGnssInterfaceHost = new (std::nothrow) HdfGnssInterfaceHost;
69 if (hdfGnssInterfaceHost == nullptr) {
74 hdfGnssInterfaceHost->ioService.Dispatch = GnssInterfaceDriverDispatch;
79 delete hdfGnssInterfaceHost;
83 hdfGnssInterfaceHost->stub = OHOS::HDI::ObjectCollector::GetInstance().GetOrNewObject(serviceImpl,
85 if (hdfGnssInterfaceHost->stub == nullptr) {
87 delete hdfGnssInterfaceHost;
91 deviceObject->service = &hdfGnssInterfaceHost->ioService;
103 auto *hdfGnssInterfaceHost = CONTAINER_OF(deviceObject->service, struct HdfGnssInterfaceHost, ioService);
104 delete hdfGnssInterfaceHost;