Lines Matching refs:QCamera2HardwareInterface
85 uint32_t QCamera2HardwareInterface::sNextJobId = 1;
87 camera_device_ops_t QCamera2HardwareInterface::mCameraOps = {
88 .set_preview_window = QCamera2HardwareInterface::set_preview_window,
89 .set_callbacks = QCamera2HardwareInterface::set_CallBacks,
90 .enable_msg_type = QCamera2HardwareInterface::enable_msg_type,
91 .disable_msg_type = QCamera2HardwareInterface::disable_msg_type,
92 .msg_type_enabled = QCamera2HardwareInterface::msg_type_enabled,
94 .start_preview = QCamera2HardwareInterface::start_preview,
95 .stop_preview = QCamera2HardwareInterface::stop_preview,
96 .preview_enabled = QCamera2HardwareInterface::preview_enabled,
97 .store_meta_data_in_buffers= QCamera2HardwareInterface::store_meta_data_in_buffers,
99 .start_recording = QCamera2HardwareInterface::start_recording,
100 .stop_recording = QCamera2HardwareInterface::stop_recording,
101 .recording_enabled = QCamera2HardwareInterface::recording_enabled,
102 .release_recording_frame = QCamera2HardwareInterface::release_recording_frame,
104 .auto_focus = QCamera2HardwareInterface::auto_focus,
105 .cancel_auto_focus = QCamera2HardwareInterface::cancel_auto_focus,
107 .take_picture = QCamera2HardwareInterface::take_picture,
108 .cancel_picture = QCamera2HardwareInterface::cancel_picture,
110 .set_parameters = QCamera2HardwareInterface::set_parameters,
111 .get_parameters = QCamera2HardwareInterface::get_parameters,
112 .put_parameters = QCamera2HardwareInterface::put_parameters,
113 .send_command = QCamera2HardwareInterface::send_command,
115 .release = QCamera2HardwareInterface::release,
116 .dump = QCamera2HardwareInterface::dump,
132 int QCamera2HardwareInterface::set_preview_window(struct camera_device *device, in set_preview_window()
137 QCamera2HardwareInterface *hw = in set_preview_window()
138 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in set_preview_window()
173 void QCamera2HardwareInterface::set_CallBacks(struct camera_device *device, in set_CallBacks()
181 QCamera2HardwareInterface *hw = in set_CallBacks()
182 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in set_CallBacks()
218 void QCamera2HardwareInterface::enable_msg_type(struct camera_device *device, int32_t msg_type) in enable_msg_type()
221 QCamera2HardwareInterface *hw = in enable_msg_type()
222 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in enable_msg_type()
251 void QCamera2HardwareInterface::disable_msg_type(struct camera_device *device, int32_t msg_type) in disable_msg_type()
254 QCamera2HardwareInterface *hw = in disable_msg_type()
255 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in disable_msg_type()
285 int QCamera2HardwareInterface::msg_type_enabled(struct camera_device *device, int32_t msg_type) in msg_type_enabled()
289 QCamera2HardwareInterface *hw = in msg_type_enabled()
290 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in msg_type_enabled()
322 int QCamera2HardwareInterface::prepare_preview(struct camera_device *device) in prepare_preview()
326 QCamera2HardwareInterface *hw = in prepare_preview()
327 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in prepare_preview()
360 int QCamera2HardwareInterface::start_preview(struct camera_device *device) in start_preview()
364 QCamera2HardwareInterface *hw = in start_preview()
365 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in start_preview()
401 void QCamera2HardwareInterface::stop_preview(struct camera_device *device) in stop_preview()
404 QCamera2HardwareInterface *hw = in stop_preview()
405 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in stop_preview()
439 int QCamera2HardwareInterface::preview_enabled(struct camera_device *device) in preview_enabled()
443 QCamera2HardwareInterface *hw = in preview_enabled()
444 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in preview_enabled()
482 int QCamera2HardwareInterface::store_meta_data_in_buffers( in store_meta_data_in_buffers()
486 QCamera2HardwareInterface *hw = in store_meta_data_in_buffers()
487 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in store_meta_data_in_buffers()
519 int QCamera2HardwareInterface::restart_start_preview(struct camera_device *device) in restart_start_preview()
523 QCamera2HardwareInterface *hw = in restart_start_preview()
524 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in restart_start_preview()
563 int QCamera2HardwareInterface::restart_stop_preview(struct camera_device *device) in restart_stop_preview()
567 QCamera2HardwareInterface *hw = in restart_stop_preview()
568 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in restart_stop_preview()
606 int QCamera2HardwareInterface::pre_start_recording(struct camera_device *device) in pre_start_recording()
610 QCamera2HardwareInterface *hw = in pre_start_recording()
611 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in pre_start_recording()
642 int QCamera2HardwareInterface::start_recording(struct camera_device *device) in start_recording()
646 QCamera2HardwareInterface *hw = in start_recording()
647 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in start_recording()
692 void QCamera2HardwareInterface::stop_recording(struct camera_device *device) in stop_recording()
695 QCamera2HardwareInterface *hw = in stop_recording()
696 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in stop_recording()
728 int QCamera2HardwareInterface::recording_enabled(struct camera_device *device) in recording_enabled()
732 QCamera2HardwareInterface *hw = in recording_enabled()
733 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in recording_enabled()
763 void QCamera2HardwareInterface::release_recording_frame( in release_recording_frame()
768 QCamera2HardwareInterface *hw = in release_recording_frame()
769 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in release_recording_frame()
802 int QCamera2HardwareInterface::auto_focus(struct camera_device *device) in auto_focus()
806 QCamera2HardwareInterface *hw = in auto_focus()
807 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in auto_focus()
839 int QCamera2HardwareInterface::cancel_auto_focus(struct camera_device *device) in cancel_auto_focus()
843 QCamera2HardwareInterface *hw = in cancel_auto_focus()
844 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in cancel_auto_focus()
875 int QCamera2HardwareInterface::pre_take_picture(struct camera_device *device) in pre_take_picture()
879 QCamera2HardwareInterface *hw = in pre_take_picture()
880 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in pre_take_picture()
911 int QCamera2HardwareInterface::take_picture(struct camera_device *device) in take_picture()
915 QCamera2HardwareInterface *hw = in take_picture()
916 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in take_picture()
1028 int QCamera2HardwareInterface::cancel_picture(struct camera_device *device) in cancel_picture()
1032 QCamera2HardwareInterface *hw = in cancel_picture()
1033 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in cancel_picture()
1066 int QCamera2HardwareInterface::set_parameters(struct camera_device *device, in set_parameters()
1071 QCamera2HardwareInterface *hw = in set_parameters()
1072 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in set_parameters()
1135 int QCamera2HardwareInterface::stop_after_set_params(struct camera_device *device) in stop_after_set_params()
1139 QCamera2HardwareInterface *hw = in stop_after_set_params()
1140 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in stop_after_set_params()
1178 int QCamera2HardwareInterface::commit_params(struct camera_device *device) in commit_params()
1182 QCamera2HardwareInterface *hw = in commit_params()
1183 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in commit_params()
1221 int QCamera2HardwareInterface::restart_after_set_params(struct camera_device *device) in restart_after_set_params()
1225 QCamera2HardwareInterface *hw = in restart_after_set_params()
1226 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in restart_after_set_params()
1261 char* QCamera2HardwareInterface::get_parameters(struct camera_device *device) in get_parameters()
1265 QCamera2HardwareInterface *hw = in get_parameters()
1266 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in get_parameters()
1296 void QCamera2HardwareInterface::put_parameters(struct camera_device *device, in put_parameters()
1300 QCamera2HardwareInterface *hw = in put_parameters()
1301 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in put_parameters()
1332 int QCamera2HardwareInterface::send_command(struct camera_device *device, in send_command()
1339 QCamera2HardwareInterface *hw = in send_command()
1340 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in send_command()
1380 int QCamera2HardwareInterface::send_command_restart(struct camera_device *device, in send_command_restart()
1387 QCamera2HardwareInterface *hw = in send_command_restart()
1388 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in send_command_restart()
1422 void QCamera2HardwareInterface::release(struct camera_device *device) in release()
1425 QCamera2HardwareInterface *hw = in release()
1426 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in release()
1455 int QCamera2HardwareInterface::dump(struct camera_device *device, int fd) in dump()
1463 QCamera2HardwareInterface *hw = in dump()
1464 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in dump()
1495 int QCamera2HardwareInterface::close_camera_device(hw_device_t *hw_dev) in close_camera_device()
1500 QCamera2HardwareInterface *hw = in close_camera_device()
1501 reinterpret_cast<QCamera2HardwareInterface *>( in close_camera_device()
1529 int QCamera2HardwareInterface::register_face_image(struct camera_device *device, in register_face_image()
1535 QCamera2HardwareInterface *hw = in register_face_image()
1536 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in register_face_image()
1571 int QCamera2HardwareInterface::prepare_snapshot(struct camera_device *device) in prepare_snapshot()
1575 QCamera2HardwareInterface *hw = in prepare_snapshot()
1576 reinterpret_cast<QCamera2HardwareInterface *>(device->priv); in prepare_snapshot()
1616 QCamera2HardwareInterface::QCamera2HardwareInterface(uint32_t cameraId) in QCamera2HardwareInterface() function in qcamera::QCamera2HardwareInterface
1760 QCamera2HardwareInterface::~QCamera2HardwareInterface() in ~QCamera2HardwareInterface()
1805 uint32_t QCamera2HardwareInterface::deferPPInit() in deferPPInit()
1834 int QCamera2HardwareInterface::openCamera(struct hw_device_t **hw_device) in openCamera()
1875 int QCamera2HardwareInterface::openCamera() in openCamera()
2058 int QCamera2HardwareInterface::bundleRelatedCameras(bool syncOn) in bundleRelatedCameras()
2080 int QCamera2HardwareInterface::getCameraSessionId(uint32_t* session_id) in getCameraSessionId()
2104 bool QCamera2HardwareInterface::isFrameSyncEnabled(void) in isFrameSyncEnabled()
2121 int32_t QCamera2HardwareInterface::setFrameSyncEnabled(bool enable) in setFrameSyncEnabled()
2136 QCamera2HardwareInterface::getRelatedCamSyncInfo(void) in getRelatedCamSyncInfo()
2153 int32_t QCamera2HardwareInterface::setRelatedCamSyncInfo( in setRelatedCamSyncInfo()
2173 bool QCamera2HardwareInterface::getMpoComposition(void) in getMpoComposition()
2191 int32_t QCamera2HardwareInterface::setMpoComposition(bool enable) in setMpoComposition()
2223 bool QCamera2HardwareInterface::getRecordingHintValue(void) in getRecordingHintValue()
2240 int32_t QCamera2HardwareInterface::setRecordingHintValue(int32_t value) in setRecordingHintValue()
2256 int QCamera2HardwareInterface::closeCamera() in closeCamera()
2358 cam_capability_t *QCamera2HardwareInterface::getCapabilities(mm_camera_ops_t *ops, in getCapabilities()
2454 int QCamera2HardwareInterface::initCapabilities(uint32_t cameraId, in initCapabilities()
2520 int QCamera2HardwareInterface::getCapabilities(uint32_t cameraId, in getCapabilities()
2546 cam_capability_t* QCamera2HardwareInterface::getCamHalCapabilities() in getCamHalCapabilities()
2563 uint8_t QCamera2HardwareInterface::getBufNumForAux(cam_stream_type_t stream_type) in getBufNumForAux()
2602 uint8_t QCamera2HardwareInterface::getBufNumRequired(cam_stream_type_t stream_type) in getBufNumRequired()
2890 uint8_t QCamera2HardwareInterface::getStreamRefCount(cam_stream_type_t stream_type, in getStreamRefCount()
2933 uint32_t QCamera2HardwareInterface::getCamHandleForChannel(qcamera_ch_type_enum_t ch_type) in getCamHandleForChannel()
2984 QCameraMemory *QCamera2HardwareInterface::allocateStreamBuf( in allocateStreamBuf()
3221 int32_t QCamera2HardwareInterface::allocateMoreStreamBuf( in allocateMoreStreamBuf()
3244 QCameraHeapMemory *QCamera2HardwareInterface::allocateMiscBuf( in allocateMiscBuf()
3299 int QCamera2HardwareInterface::initStreamInfoBuf(cam_stream_type_t stream_type, in initStreamInfoBuf()
3493 QCameraHeapMemory *QCamera2HardwareInterface::allocateStreamInfoBuf( in allocateStreamInfoBuf()
3553 QCameraMemory *QCamera2HardwareInterface::allocateStreamUserBuf( in allocateStreamUserBuf()
3648 void QCamera2HardwareInterface::waitForDeferredAlloc(cam_stream_type_t stream_type) in waitForDeferredAlloc()
3668 int QCamera2HardwareInterface::setPreviewWindow( in setPreviewWindow()
3691 int QCamera2HardwareInterface::setCallBacks(camera_notify_callback notify_cb, in setCallBacks()
3719 void QCamera2HardwareInterface::setJpegCallBacks(jpeg_data_callback jpegCb, in setJpegCallBacks()
3740 int QCamera2HardwareInterface::enableMsgType(int32_t msg_type) in enableMsgType()
3783 int QCamera2HardwareInterface::disableMsgType(int32_t msg_type) in disableMsgType()
3817 int QCamera2HardwareInterface::msgTypeEnabled(int32_t msg_type) in msgTypeEnabled()
3833 int QCamera2HardwareInterface::msgTypeEnabledWithLock(int32_t msg_type) in msgTypeEnabledWithLock()
3853 int QCamera2HardwareInterface::startPreview() in startPreview()
3926 int32_t QCamera2HardwareInterface::updatePostPreviewParameters() { in updatePostPreviewParameters()
3944 int QCamera2HardwareInterface::stopPreview() in stopPreview()
3987 int QCamera2HardwareInterface::storeMetaDataInBuffers(int enable) in storeMetaDataInBuffers()
4004 int QCamera2HardwareInterface::preStartRecording() in preStartRecording()
4046 int QCamera2HardwareInterface::startRecording() in startRecording()
4142 int QCamera2HardwareInterface::stopRecording() in stopRecording()
4178 int QCamera2HardwareInterface::releaseRecordingFrame(const void * opaque) in releaseRecordingFrame()
4202 int QCamera2HardwareInterface::autoFocus() in autoFocus()
4245 int QCamera2HardwareInterface::cancelAutoFocus() in cancelAutoFocus()
4283 bool QCamera2HardwareInterface::processUFDumps(qcamera_jpeg_evt_payload_t *evt) in processUFDumps()
4346 int32_t QCamera2HardwareInterface::unconfigureAdvancedCapture() in unconfigureAdvancedCapture()
4414 int32_t QCamera2HardwareInterface::configureAdvancedCapture() in configureAdvancedCapture()
4506 int32_t QCamera2HardwareInterface::configureAFBracketing(bool enable) in configureAFBracketing()
4555 int32_t QCamera2HardwareInterface::configureHDRBracketing() in configureHDRBracketing()
4622 int32_t QCamera2HardwareInterface::configureAEBracketing() in configureAEBracketing()
4647 int32_t QCamera2HardwareInterface::configureOptiZoom() in configureOptiZoom()
4674 int32_t QCamera2HardwareInterface::configureStillMore() in configureStillMore()
4745 int32_t QCamera2HardwareInterface::configureHalPostProcess() in configureHalPostProcess()
4781 int32_t QCamera2HardwareInterface::stopAdvancedCapture( in stopAdvancedCapture()
4824 int32_t QCamera2HardwareInterface::startAdvancedCapture( in startAdvancedCapture()
4863 int QCamera2HardwareInterface::preTakePicture() in preTakePicture()
4907 int QCamera2HardwareInterface::takePicture() in takePicture()
5278 int32_t QCamera2HardwareInterface::configureOnlineRotation(QCameraChannel &ch) in configureOnlineRotation()
5322 int32_t QCamera2HardwareInterface::declareSnapshotStreams() in declareSnapshotStreams()
5348 int32_t QCamera2HardwareInterface::longShot() in longShot()
5389 int QCamera2HardwareInterface::stopCaptureChannel(bool destroy) in stopCaptureChannel()
5418 int QCamera2HardwareInterface::cancelPicture() in cancelPicture()
5468 void QCamera2HardwareInterface::captureDone() in captureDone()
5499 QCamera2HardwareInterface *hw = reinterpret_cast<QCamera2HardwareInterface *>(data); in Live_Snapshot_thread()
5525 QCamera2HardwareInterface *hw = reinterpret_cast<QCamera2HardwareInterface *>(data); in Int_Pic_thread()
5559 int QCamera2HardwareInterface::takeLiveSnapshot() in takeLiveSnapshot()
5585 int QCamera2HardwareInterface::takePictureInternal() in takePictureInternal()
5605 void QCamera2HardwareInterface::checkIntPicPending(bool JpegMemOpt, char *raw_format) in checkIntPicPending()
5676 int QCamera2HardwareInterface::takeBackendPic_internal(bool *JpegMemOpt, char *raw_format) in takeBackendPic_internal()
5772 void QCamera2HardwareInterface::clearIntPendingEvents() in clearIntPendingEvents()
5809 int QCamera2HardwareInterface::takeLiveSnapshot_internal() in takeLiveSnapshot_internal()
6025 int QCamera2HardwareInterface::cancelLiveSnapshot() in cancelLiveSnapshot()
6051 int QCamera2HardwareInterface::cancelLiveSnapshot_internal() { in cancelLiveSnapshot_internal()
6108 int QCamera2HardwareInterface::putParameters(char *parms) in putParameters()
6128 int QCamera2HardwareInterface::sendCommand(int32_t command, in sendCommand()
6240 int QCamera2HardwareInterface::registerFaceImage(void *img_ptr, in registerFaceImage()
6330 int QCamera2HardwareInterface::release() in release()
6355 int QCamera2HardwareInterface::dump(int fd) in dump()
6383 int QCamera2HardwareInterface::processAPI(qcamera_sm_evt_enum_t api, void *api_payload) in processAPI()
6407 int QCamera2HardwareInterface::processEvt(qcamera_sm_evt_enum_t evt, void *evt_payload) in processEvt()
6425 int QCamera2HardwareInterface::processSyncEvt(qcamera_sm_evt_enum_t evt, void *evt_payload) in processSyncEvt()
6455 void QCamera2HardwareInterface::camEvtHandle(uint32_t /*camera_handle*/, in camEvtHandle()
6459 QCamera2HardwareInterface *obj = (QCamera2HardwareInterface *)user_data; in camEvtHandle()
6519 void QCamera2HardwareInterface::jpegEvtHandle(jpeg_job_status_t status, in jpegEvtHandle()
6525 QCamera2HardwareInterface *obj = (QCamera2HardwareInterface *)userdata; in jpegEvtHandle()
6557 int QCamera2HardwareInterface::thermalEvtHandle( in thermalEvtHandle()
6588 int32_t QCamera2HardwareInterface::sendEvtNotify(int32_t msg_type, in sendEvtNotify()
6611 int32_t QCamera2HardwareInterface::processAEInfo(cam_3a_params_t &ae_params) in processAEInfo()
6653 int32_t QCamera2HardwareInterface::processFocusPositionInfo(cam_focus_pos_info_t &cur_pos_info) in processFocusPositionInfo()
6671 int32_t QCamera2HardwareInterface::processAutoFocusEvent(cam_auto_focus_data_t &focus_data) in processAutoFocusEvent()
6821 int32_t QCamera2HardwareInterface::processZoomEvent(cam_crop_data_t &crop_info) in processZoomEvent()
6844 int32_t QCamera2HardwareInterface::processZSLCaptureDone() in processZSLCaptureDone()
6866 int32_t QCamera2HardwareInterface::processRetroAECUnlock() in processRetroAECUnlock()
6899 int32_t QCamera2HardwareInterface::processHDRData( in processHDRData()
6974 int32_t QCamera2HardwareInterface::processLEDCalibration(int32_t value) in processLEDCalibration()
7035 int32_t QCamera2HardwareInterface::transAwbMetaToParams(cam_awb_params_t &awb_params) in transAwbMetaToParams()
7054 int32_t QCamera2HardwareInterface::processPrepSnapshotDoneEvent( in processPrepSnapshotDoneEvent()
7084 int32_t QCamera2HardwareInterface::processASDUpdate( in processASDUpdate()
7140 int32_t QCamera2HardwareInterface::processJpegNotify(qcamera_jpeg_evt_payload_t *jpeg_evt) in processJpegNotify()
7157 void QCamera2HardwareInterface::processDualCamFovControl() in processDualCamFovControl()
7191 int32_t QCamera2HardwareInterface::processCameraControl( in processCameraControl()
7240 int32_t QCamera2HardwareInterface::switchCameraCb(uint32_t camMaster) in switchCameraCb()
7277 void QCamera2HardwareInterface::lockAPI() in lockAPI()
7293 void QCamera2HardwareInterface::waitAPIResult(qcamera_sm_evt_enum_t api_evt, in waitAPIResult()
7335 void QCamera2HardwareInterface::unlockAPI() in unlockAPI()
7350 void QCamera2HardwareInterface::signalAPIResult(qcamera_api_result_t *result) in signalAPIResult()
7382 void QCamera2HardwareInterface::signalEvtResult(qcamera_api_result_t *result) in signalEvtResult()
7390 int32_t QCamera2HardwareInterface::prepareRawStream(QCameraChannel *curChannel) in prepareRawStream()
7454 int32_t QCamera2HardwareInterface::getPaddingInfo(cam_stream_type_t streamType, in getPaddingInfo()
7507 int32_t QCamera2HardwareInterface::addStreamToChannel(QCameraChannel *pChannel, in addStreamToChannel()
7592 int32_t QCamera2HardwareInterface::addPreviewChannel() in addPreviewChannel()
7699 int32_t QCamera2HardwareInterface::addVideoChannel() in addVideoChannel()
7763 int32_t QCamera2HardwareInterface::addSnapshotChannel() in addSnapshotChannel()
7819 int32_t QCamera2HardwareInterface::addRawChannel() in addRawChannel()
7902 int32_t QCamera2HardwareInterface::addZSLChannel() in addZSLChannel()
8033 int32_t QCamera2HardwareInterface::addCaptureChannel() in addCaptureChannel()
8148 int32_t QCamera2HardwareInterface::addMetaDataChannel() in addMetaDataChannel()
8197 int32_t QCamera2HardwareInterface::addCallbackChannel() in addCallbackChannel()
8246 int32_t QCamera2HardwareInterface::addAnalysisChannel() in addAnalysisChannel()
8297 int32_t QCamera2HardwareInterface::getPPConfig(cam_pp_feature_config_t &pp_config, in getPPConfig()
8534 QCameraReprocessChannel *QCamera2HardwareInterface::addReprocChannel( in addReprocChannel()
8675 QCameraReprocessChannel *QCamera2HardwareInterface::addOfflineReprocChannel( in addOfflineReprocChannel()
8745 int32_t QCamera2HardwareInterface::addChannel(qcamera_ch_type_enum_t ch_type) in addChannel()
8795 int32_t QCamera2HardwareInterface::delChannel(qcamera_ch_type_enum_t ch_type, in delChannel()
8822 int32_t QCamera2HardwareInterface::startChannel(qcamera_ch_type_enum_t ch_type) in startChannel()
8843 int32_t QCamera2HardwareInterface::stopChannel(qcamera_ch_type_enum_t ch_type) in stopChannel()
8864 int32_t QCamera2HardwareInterface::preparePreview() in preparePreview()
8992 void QCamera2HardwareInterface::unpreparePreview() in unpreparePreview()
9014 void QCamera2HardwareInterface::playShutter(){ in playShutter()
9040 QCameraChannel *QCamera2HardwareInterface::getChannelByHandle(uint32_t channelHandle) in getChannelByHandle()
9063 bool QCamera2HardwareInterface::needPreviewFDCallback(uint8_t num_faces) in needPreviewFDCallback()
9084 int32_t QCamera2HardwareInterface::processFaceDetectionResult(cam_faces_data_t *faces_data) in processFaceDetectionResult()
9378 void QCamera2HardwareInterface::releaseCameraMemory(void *data, in releaseCameraMemory()
9400 void QCamera2HardwareInterface::returnStreamBuffer(void *data, in returnStreamBuffer()
9425 int32_t QCamera2HardwareInterface::processHistogramStats( in processHistogramStats()
9516 int QCamera2HardwareInterface::calcThermalLevel( in calcThermalLevel()
9664 int QCamera2HardwareInterface::recalcFPSRange(int &minFPS, int &maxFPS, in recalcFPSRange()
9692 int QCamera2HardwareInterface::updateThermalLevel(void *thermal_level) in updateThermalLevel()
9749 int QCamera2HardwareInterface::updateParameters(const char *parms, bool &needRestart) in updateParameters()
9780 int QCamera2HardwareInterface::commitParameterChanges() in commitParameterChanges()
9808 bool QCamera2HardwareInterface::needDebugFps() in needDebugFps()
9825 bool QCamera2HardwareInterface::isCACEnabled() in isCACEnabled()
9844 bool QCamera2HardwareInterface::is4k2kResolution(cam_dimension_t* resolution) in is4k2kResolution()
9865 bool QCamera2HardwareInterface::isPreviewRestartEnabled() in isPreviewRestartEnabled()
9884 bool QCamera2HardwareInterface::needReprocess() in needReprocess()
9927 bool QCamera2HardwareInterface::needRotationReprocess() in needRotationReprocess()
9964 void QCamera2HardwareInterface::getThumbnailSize(cam_dimension_t &dim) in getThumbnailSize()
9978 uint32_t QCamera2HardwareInterface::getJpegQuality() in getJpegQuality()
9994 QCameraExif *QCamera2HardwareInterface::getExifData() in getExifData()
10196 int32_t QCamera2HardwareInterface::setHistogram(bool histogram_en) in setHistogram()
10213 int32_t QCamera2HardwareInterface::setFaceDetection(bool enabled) in setFaceDetection()
10229 bool QCamera2HardwareInterface::isCaptureShutterEnabled() in isCaptureShutterEnabled()
10250 bool QCamera2HardwareInterface::needProcessPreviewFrame(uint32_t frameID) in needProcessPreviewFrame()
10268 bool QCamera2HardwareInterface::needSendPreviewCallback() in needSendPreviewCallback()
10288 void QCamera2HardwareInterface::setDisplaySkip(bool enabled, uint8_t skipCnt) in setDisplaySkip()
10311 void QCamera2HardwareInterface::setDisplayFrameSkip(uint32_t start, in setDisplayFrameSkip()
10338 bool QCamera2HardwareInterface::isDisplayFrameToSkip(uint32_t frameId) in isDisplayFrameToSkip()
10355 uint32_t QCamera2HardwareInterface::getSnapshotHandle() in getSnapshotHandle()
10382 int32_t QCamera2HardwareInterface::prepareHardwareForSnapshot(int32_t afNeeded) in prepareHardwareForSnapshot()
10401 bool QCamera2HardwareInterface::needFDMetadata(qcamera_ch_type_enum_t channel_type) in needFDMetadata()
10427 void *QCamera2HardwareInterface::deferredWorkRoutine(void *obj) in deferredWorkRoutine()
10434 QCamera2HardwareInterface *pme = (QCamera2HardwareInterface *)obj; in deferredWorkRoutine()
10795 uint32_t QCamera2HardwareInterface::queueDeferredWork(DeferredWorkCmd cmd, in queueDeferredWork()
10836 int32_t QCamera2HardwareInterface::initJpegHandle() { in initJpegHandle()
10880 int32_t QCamera2HardwareInterface::deinitJpegHandle() { in deinitJpegHandle()
10913 int32_t QCamera2HardwareInterface::setJpegHandleInfo(mm_jpeg_ops_t *ops, in setJpegHandleInfo()
10945 int32_t QCamera2HardwareInterface::getJpegHandleInfo(mm_jpeg_ops_t *ops, in getJpegHandleInfo()
10978 uint32_t QCamera2HardwareInterface::dequeueDeferredWork(DefWork* dw, int32_t jobStatus) in dequeueDeferredWork()
11012 int32_t QCamera2HardwareInterface::getDefJobStatus(uint32_t &job_id) in getDefJobStatus()
11040 bool QCamera2HardwareInterface::checkDeferredWork(uint32_t &job_id) in checkDeferredWork()
11062 int32_t QCamera2HardwareInterface::waitDeferredWork(uint32_t &job_id) in waitDeferredWork()
11088 uint32_t QCamera2HardwareInterface::scheduleBackgroundTask(BackgroundTask* bgTask) in scheduleBackgroundTask()
11109 int32_t QCamera2HardwareInterface::waitForBackgroundTask(uint32_t& taskId) in waitForBackgroundTask()
11125 bool QCamera2HardwareInterface::needDeferred(cam_stream_type_t stream_type) in needDeferred()
11166 bool QCamera2HardwareInterface::needSyncCB(cam_stream_type_t stream_type) in needSyncCB()
11193 bool QCamera2HardwareInterface::isRegularCapture() in isRegularCapture()
11217 bool QCamera2HardwareInterface::needOfflineReprocessing() in needOfflineReprocessing()
11238 void QCamera2HardwareInterface::getLogLevel() in getLogLevel()
11258 cam_sensor_t QCamera2HardwareInterface::getSensorType() in getSensorType()
11275 int32_t QCamera2HardwareInterface::startRAWChannel(QCameraChannel *pMetaChannel) in startRAWChannel()
11318 int32_t QCamera2HardwareInterface::stopRAWChannel() in stopRAWChannel()
11336 bool QCamera2HardwareInterface::isLowPowerMode() in isLowPowerMode()
11366 nsecs_t QCamera2HardwareInterface::getBootToMonoTimeOffset() in getBootToMonoTimeOffset()
11394 void QCamera2HardwareInterface::fillDualCameraFOVControl() in fillDualCameraFOVControl()