Lines Matching refs:cbArg

336         qcamera_callback_argm_t cbArg;  in preview_stream_cb_routine()  local
337 memset(&cbArg, 0, sizeof(qcamera_callback_argm_t)); in preview_stream_cb_routine()
338 cbArg.cb_type = QCAMERA_DATA_CALLBACK; in preview_stream_cb_routine()
339 cbArg.msg_type = CAMERA_MSG_PREVIEW_FRAME; in preview_stream_cb_routine()
340 cbArg.data = data; in preview_stream_cb_routine()
342 cbArg.user_data = previewMem; in preview_stream_cb_routine()
343 cbArg.release_cb = releaseCameraMemory; in preview_stream_cb_routine()
345 cbArg.cookie = pme; in preview_stream_cb_routine()
346 pme->m_cbNotifier.notifyCallback(cbArg); in preview_stream_cb_routine()
415 qcamera_callback_argm_t cbArg; in nodisplay_preview_stream_cb_routine() local
416 memset(&cbArg, 0, sizeof(qcamera_callback_argm_t)); in nodisplay_preview_stream_cb_routine()
417 cbArg.cb_type = QCAMERA_DATA_CALLBACK; in nodisplay_preview_stream_cb_routine()
418 cbArg.msg_type = CAMERA_MSG_PREVIEW_FRAME; in nodisplay_preview_stream_cb_routine()
419 cbArg.data = preview_mem; in nodisplay_preview_stream_cb_routine()
421 cbArg.user_data = ( void * ) user_data; in nodisplay_preview_stream_cb_routine()
422 cbArg.cookie = stream; in nodisplay_preview_stream_cb_routine()
423 cbArg.release_cb = returnStreamBuffer; in nodisplay_preview_stream_cb_routine()
424 pme->m_cbNotifier.notifyCallback(cbArg); in nodisplay_preview_stream_cb_routine()
558 qcamera_callback_argm_t cbArg; in video_stream_cb_routine() local
559 memset(&cbArg, 0, sizeof(qcamera_callback_argm_t)); in video_stream_cb_routine()
560 cbArg.cb_type = QCAMERA_DATA_TIMESTAMP_CALLBACK; in video_stream_cb_routine()
561 cbArg.msg_type = CAMERA_MSG_VIDEO_FRAME; in video_stream_cb_routine()
562 cbArg.data = video_mem; in video_stream_cb_routine()
563 cbArg.timestamp = timeStamp; in video_stream_cb_routine()
564 pme->m_cbNotifier.notifyCallback(cbArg); in video_stream_cb_routine()
1205 qcamera_callback_argm_t *cbArg = new qcamera_callback_argm_t(); in notifyCallback() local
1206 if (NULL == cbArg) { in notifyCallback()
1210 memset(cbArg, 0, sizeof(qcamera_callback_argm_t)); in notifyCallback()
1211 *cbArg = cbArgs; in notifyCallback()
1213 if (mDataQ.enqueue((void *)cbArg)) { in notifyCallback()
1217 delete cbArg; in notifyCallback()