Lines Matching refs:notify_msg
3845 camera3_notify_msg_t notify_msg; in notifyError() local
3846 memset(¬ify_msg, 0, sizeof(camera3_notify_msg_t)); in notifyError()
3847 notify_msg.type = CAMERA3_MSG_ERROR; in notifyError()
3848 notify_msg.message.error.error_code = errorCode; in notifyError()
3849 notify_msg.message.error.error_stream = NULL; in notifyError()
3850 notify_msg.message.error.frame_number = frameNumber; in notifyError()
3851 orchestrateNotify(¬ify_msg); in notifyError()
4101 camera3_notify_msg_t notify_msg = {}; in handleMetadataWithLock() local
4134 notify_msg.type = CAMERA3_MSG_ERROR; in handleMetadataWithLock()
4135 notify_msg.message.error.frame_number = pendingRequest.frame_number; in handleMetadataWithLock()
4136 notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_BUFFER ; in handleMetadataWithLock()
4137 notify_msg.message.error.error_stream = buffer.stream; in handleMetadataWithLock()
4138 orchestrateNotify(¬ify_msg); in handleMetadataWithLock()
4366 camera3_notify_msg_t notify_msg = {.type = CAMERA3_MSG_ERROR, in handleDepthDataLocked() local
4369 orchestrateNotify(¬ify_msg); in handleDepthDataLocked()
4399 camera3_notify_msg_t notify_msg = in notifyErrorFoPendingDepthData() local
4413 notify_msg.message.error.frame_number = currentFrameNumber; in notifyErrorFoPendingDepthData()
4414 orchestrateNotify(¬ify_msg); in notifyErrorFoPendingDepthData()
4596 camera3_notify_msg_t notify_msg = {}; in handleBufferWithLock() local
4597 notify_msg.type = CAMERA3_MSG_ERROR; in handleBufferWithLock()
4598 notify_msg.message.error.frame_number = frame_number; in handleBufferWithLock()
4599 notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_BUFFER ; in handleBufferWithLock()
4600 notify_msg.message.error.error_stream = buffer->stream; in handleBufferWithLock()
4601 orchestrateNotify(¬ify_msg); in handleBufferWithLock()
5071 void QCamera3HardwareInterface::orchestrateNotify(camera3_notify_msg_t *notify_msg) in orchestrateNotify() argument
5074 uint32_t internalFrameNumber = notify_msg->message.shutter.frame_number; in orchestrateNotify()
5081 if (notify_msg->message.error.error_code == CAMERA3_MSG_ERROR_DEVICE) { in orchestrateNotify()
5094 notify_msg->message.shutter.frame_number = frameworkFrameNumber; in orchestrateNotify()
5095 mCallbackOps->notify(mCallbackOps, notify_msg); in orchestrateNotify()
6856 camera3_notify_msg_t notify_msg; in handleCameraDeviceError() local
6857 memset(¬ify_msg, 0, sizeof(camera3_notify_msg_t)); in handleCameraDeviceError()
6858 notify_msg.type = CAMERA3_MSG_ERROR; in handleCameraDeviceError()
6859 notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_DEVICE; in handleCameraDeviceError()
6860 notify_msg.message.error.error_stream = NULL; in handleCameraDeviceError()
6861 notify_msg.message.error.frame_number = 0; in handleCameraDeviceError()
6862 orchestrateNotify(¬ify_msg); in handleCameraDeviceError()
15208 camera3_notify_msg_t notify_msg; in notifyErrorForPendingRequests() local
15209 memset(¬ify_msg, 0, sizeof(camera3_notify_msg_t)); in notifyErrorForPendingRequests()
15210 notify_msg.type = CAMERA3_MSG_ERROR; in notifyErrorForPendingRequests()
15211 notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_BUFFER; in notifyErrorForPendingRequests()
15212 notify_msg.message.error.error_stream = info.stream; in notifyErrorForPendingRequests()
15213 notify_msg.message.error.frame_number = pendingBuffer->frame_number; in notifyErrorForPendingRequests()
15214 orchestrateNotify(¬ify_msg); in notifyErrorForPendingRequests()
15233 camera3_notify_msg_t notify_msg; in notifyErrorForPendingRequests() local
15234 memset(¬ify_msg, 0, sizeof(camera3_notify_msg_t)); in notifyErrorForPendingRequests()
15235 notify_msg.type = CAMERA3_MSG_ERROR; in notifyErrorForPendingRequests()
15236 notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_RESULT; in notifyErrorForPendingRequests()
15237 notify_msg.message.error.error_stream = nullptr; in notifyErrorForPendingRequests()
15238 notify_msg.message.error.frame_number = pendingRequest->frame_number; in notifyErrorForPendingRequests()
15239 orchestrateNotify(¬ify_msg); in notifyErrorForPendingRequests()
15253 camera3_notify_msg_t notify_msg; in notifyErrorForPendingRequests() local
15254 memset(¬ify_msg, 0, sizeof(camera3_notify_msg_t)); in notifyErrorForPendingRequests()
15255 notify_msg.type = CAMERA3_MSG_ERROR; in notifyErrorForPendingRequests()
15256 notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_BUFFER; in notifyErrorForPendingRequests()
15257 notify_msg.message.error.error_stream = info.stream; in notifyErrorForPendingRequests()
15258 notify_msg.message.error.frame_number = pendingBuffer->frame_number; in notifyErrorForPendingRequests()
15259 orchestrateNotify(¬ify_msg); in notifyErrorForPendingRequests()
15276 camera3_notify_msg_t notify_msg; in notifyErrorForPendingRequests() local
15277 memset(¬ify_msg, 0, sizeof(camera3_notify_msg_t)); in notifyErrorForPendingRequests()
15278 notify_msg.type = CAMERA3_MSG_ERROR; in notifyErrorForPendingRequests()
15279 notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_REQUEST; in notifyErrorForPendingRequests()
15280 notify_msg.message.error.frame_number = pendingBuffer->frame_number; in notifyErrorForPendingRequests()
15281 orchestrateNotify(¬ify_msg); in notifyErrorForPendingRequests()
16679 camera3_notify_msg_t notify_msg = {}; in onFailedCaptureResult() local
16680 notify_msg.type = CAMERA3_MSG_ERROR; in onFailedCaptureResult()
16681 notify_msg.message.error.frame_number = pendingBuffers->frame_number; in onFailedCaptureResult()
16682 notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_REQUEST; in onFailedCaptureResult()
16683 notify_msg.message.error.error_stream = buffer.stream; in onFailedCaptureResult()
16685 orchestrateNotify(¬ify_msg); in onFailedCaptureResult()