Lines Matching refs:notify_msg

426     camera3_notify_msg_t notify_msg;  in camEvtHandle()  local
440 memset(&notify_msg, 0, sizeof(camera3_notify_msg_t)); in camEvtHandle()
441 notify_msg.type = CAMERA3_MSG_ERROR; in camEvtHandle()
442 notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_DEVICE; in camEvtHandle()
443 notify_msg.message.error.error_stream = NULL; in camEvtHandle()
444 notify_msg.message.error.frame_number = 0; in camEvtHandle()
445 obj->mCallbackOps->notify(obj->mCallbackOps, &notify_msg); in camEvtHandle()
1615 mCallbackOps->notify(mCallbackOps, &j->notify_msg); in handlePendingReprocResults()
1784 camera3_notify_msg_t notify_msg; in handleMetadataWithLock() local
1794 notify_msg.type = CAMERA3_MSG_ERROR; in handleMetadataWithLock()
1795 notify_msg.message.error.frame_number = i->frame_number; in handleMetadataWithLock()
1796 notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_BUFFER ; in handleMetadataWithLock()
1797 notify_msg.message.error.error_stream = j->stream; in handleMetadataWithLock()
1798 mCallbackOps->notify(mCallbackOps, &notify_msg); in handleMetadataWithLock()
1814 camera3_notify_msg_t notify_msg; in handleMetadataWithLock() local
1815 notify_msg.type = CAMERA3_MSG_SHUTTER; in handleMetadataWithLock()
1816 notify_msg.message.shutter.frame_number = i->frame_number; in handleMetadataWithLock()
1817 notify_msg.message.shutter.timestamp = capture_time - in handleMetadataWithLock()
1819 mCallbackOps->notify(mCallbackOps, &notify_msg); in handleMetadataWithLock()
1820 i->timestamp = notify_msg.message.shutter.timestamp; in handleMetadataWithLock()
1822 __func__, i->frame_number, notify_msg.message.shutter.timestamp); in handleMetadataWithLock()
1832 camera3_notify_msg_t notify_msg; in handleMetadataWithLock() local
1833 notify_msg.type = CAMERA3_MSG_SHUTTER; in handleMetadataWithLock()
1834 notify_msg.message.shutter.frame_number = i->frame_number; in handleMetadataWithLock()
1835 notify_msg.message.shutter.timestamp = capture_time; in handleMetadataWithLock()
1836 mCallbackOps->notify(mCallbackOps, &notify_msg); in handleMetadataWithLock()
2023 camera3_notify_msg_t notify_msg; in handleBufferWithLock() local
2024 memset(&notify_msg, 0, sizeof(camera3_notify_msg_t)); in handleBufferWithLock()
2038 notify_msg.type = CAMERA3_MSG_SHUTTER; in handleBufferWithLock()
2039 notify_msg.message.shutter.frame_number = frame_number; in handleBufferWithLock()
2040 notify_msg.message.shutter.timestamp = capture_time; in handleBufferWithLock()
2084 mCallbackOps->notify(mCallbackOps, &notify_msg); in handleBufferWithLock()
2093 pendingResult.notify_msg = notify_msg; in handleBufferWithLock()
2635 camera3_notify_msg_t notify_msg; in flush() local
2721 notify_msg.type = CAMERA3_MSG_ERROR; in flush()
2722 notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_BUFFER; in flush()
2723 notify_msg.message.error.error_stream = info.stream; in flush()
2724 notify_msg.message.error.frame_number = frame_number; in flush()
2730 mCallbackOps->notify(mCallbackOps, &notify_msg); in flush()
2773 notify_msg.type = CAMERA3_MSG_ERROR; in flush()
2774 notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_REQUEST; in flush()
2775 notify_msg.message.error.error_stream = NULL; in flush()
2776 notify_msg.message.error.frame_number = frame_number; in flush()
2777 mCallbackOps->notify(mCallbackOps, &notify_msg); in flush()
2881 camera3_notify_msg_t notify_msg; in captureResultCb() local
2882 notify_msg.type = CAMERA3_MSG_SHUTTER; in captureResultCb()
2883 notify_msg.message.shutter.frame_number = mLoopBackResult->frame_number; in captureResultCb()
2884 notify_msg.message.shutter.timestamp = mLoopBackTimestamp; in captureResultCb()
2885 mCallbackOps->notify(mCallbackOps, &notify_msg); in captureResultCb()