Lines Matching refs:hdfFaceAuthInterfaceHost
162 …auto *hdfFaceAuthInterfaceHost = CONTAINER_OF(client->device->service, struct HdfFaceAuthInterface…
163 if (hdfFaceAuthInterfaceHost == nullptr || hdfFaceAuthInterfaceHost->stub == nullptr) {
164 IAM_LOGE("hdfFaceAuthInterfaceHost is invalid");
181 return hdfFaceAuthInterfaceHost->stub->SendRequest(cmdId, *dataParcel, *replyParcel, option);
207 auto *hdfFaceAuthInterfaceHost = new (std::nothrow) HdfFaceAuthInterfaceHost;
208 if (hdfFaceAuthInterfaceHost == nullptr) {
213 hdfFaceAuthInterfaceHost->ioService.Dispatch = FaceAuthInterfaceDriverDispatch;
214 hdfFaceAuthInterfaceHost->ioService.Open = NULL;
215 hdfFaceAuthInterfaceHost->ioService.Release = NULL;
220 delete hdfFaceAuthInterfaceHost;
224 hdfFaceAuthInterfaceHost->stub =
226 if (hdfFaceAuthInterfaceHost->stub == nullptr) {
228 delete hdfFaceAuthInterfaceHost;
232 deviceObject->service = &hdfFaceAuthInterfaceHost->ioService;
245 …auto *hdfFaceAuthInterfaceHost = CONTAINER_OF(deviceObject->service, struct HdfFaceAuthInterfaceHo…
246 if (hdfFaceAuthInterfaceHost == nullptr) {
247 IAM_LOGE("hdfFaceAuthInterfaceHost is nullptr");
250 delete hdfFaceAuthInterfaceHost;