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