Home | History | Annotate | Download | only in HAL

Lines Matching defs:QCamera2HardwareInterface

51 camera_device_ops_t QCamera2HardwareInterface::mCameraOps = {
52 set_preview_window: QCamera2HardwareInterface::set_preview_window,
53 set_callbacks: QCamera2HardwareInterface::set_CallBacks,
54 enable_msg_type: QCamera2HardwareInterface::enable_msg_type,
55 disable_msg_type: QCamera2HardwareInterface::disable_msg_type,
56 msg_type_enabled: QCamera2HardwareInterface::msg_type_enabled,
58 start_preview: QCamera2HardwareInterface::start_preview,
59 stop_preview: QCamera2HardwareInterface::stop_preview,
60 preview_enabled: QCamera2HardwareInterface::preview_enabled,
61 store_meta_data_in_buffers: QCamera2HardwareInterface::store_meta_data_in_buffers,
63 start_recording: QCamera2HardwareInterface::start_recording,
64 stop_recording: QCamera2HardwareInterface::stop_recording,
65 recording_enabled: QCamera2HardwareInterface::recording_enabled,
66 release_recording_frame: QCamera2HardwareInterface::release_recording_frame,
68 auto_focus: QCamera2HardwareInterface::auto_focus,
69 cancel_auto_focus: QCamera2HardwareInterface::cancel_auto_focus,
71 take_picture: QCamera2HardwareInterface::take_picture,
72 cancel_picture: QCamera2HardwareInterface::cancel_picture,
74 set_parameters: QCamera2HardwareInterface::set_parameters,
75 get_parameters: QCamera2HardwareInterface::get_parameters,
76 put_parameters: QCamera2HardwareInterface::put_parameters,
77 send_command: QCamera2HardwareInterface::send_command,
79 release: QCamera2HardwareInterface::release,
80 dump: QCamera2HardwareInterface::dump,
96 int QCamera2HardwareInterface::set_preview_window(struct camera_device *device,
100 QCamera2HardwareInterface *hw =
101 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
133 void QCamera2HardwareInterface::set_CallBacks(struct camera_device *device,
140 QCamera2HardwareInterface *hw =
141 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
173 void QCamera2HardwareInterface::enable_msg_type(struct camera_device *device, int32_t msg_type)
175 QCamera2HardwareInterface *hw =
176 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
200 void QCamera2HardwareInterface::disable_msg_type(struct camera_device *device, int32_t msg_type)
202 QCamera2HardwareInterface *hw =
203 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
228 int QCamera2HardwareInterface::msg_type_enabled(struct camera_device *device, int32_t msg_type)
231 QCamera2HardwareInterface *hw =
232 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
260 int QCamera2HardwareInterface::start_preview(struct camera_device *device)
263 QCamera2HardwareInterface *hw =
264 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
295 void QCamera2HardwareInterface::stop_preview(struct camera_device *device)
297 QCamera2HardwareInterface *hw =
298 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
324 int QCamera2HardwareInterface::preview_enabled(struct camera_device *device)
327 QCamera2HardwareInterface *hw =
328 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
358 int QCamera2HardwareInterface::store_meta_data_in_buffers(
362 QCamera2HardwareInterface *hw =
363 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
392 int QCamera2HardwareInterface::start_recording(struct camera_device *device)
395 QCamera2HardwareInterface *hw =
396 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
423 void QCamera2HardwareInterface::stop_recording(struct camera_device *device)
425 QCamera2HardwareInterface *hw =
426 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
452 int QCamera2HardwareInterface::recording_enabled(struct camera_device *device)
455 QCamera2HardwareInterface *hw =
456 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
483 void QCamera2HardwareInterface::release_recording_frame(
486 QCamera2HardwareInterface *hw =
487 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
514 int QCamera2HardwareInterface::auto_focus(struct camera_device *device)
517 QCamera2HardwareInterface *hw =
518 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
548 int QCamera2HardwareInterface::cancel_auto_focus(struct camera_device *device)
551 QCamera2HardwareInterface *hw =
552 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
580 int QCamera2HardwareInterface::take_picture(struct camera_device *device)
583 QCamera2HardwareInterface *hw =
584 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
627 int QCamera2HardwareInterface::cancel_picture(struct camera_device *device)
630 QCamera2HardwareInterface *hw =
631 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
660 int QCamera2HardwareInterface::set_parameters(struct camera_device *device,
664 QCamera2HardwareInterface *hw =
665 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
691 char* QCamera2HardwareInterface::get_parameters(struct camera_device *device)
694 QCamera2HardwareInterface *hw =
695 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
722 void QCamera2HardwareInterface::put_parameters(struct camera_device *device,
725 QCamera2HardwareInterface *hw =
726 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
754 int QCamera2HardwareInterface::send_command(struct camera_device *device,
760 QCamera2HardwareInterface *hw =
761 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
793 void QCamera2HardwareInterface::release(struct camera_device *device)
795 QCamera2HardwareInterface *hw =
796 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
822 int QCamera2HardwareInterface::dump(struct camera_device *device, int fd)
825 QCamera2HardwareInterface *hw =
826 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
854 int QCamera2HardwareInterface::close_camera_device(hw_device_t *hw_dev)
858 QCamera2HardwareInterface *hw =
859 reinterpret_cast<QCamera2HardwareInterface *>(
884 int QCamera2HardwareInterface::register_face_image(struct camera_device *device,
889 QCamera2HardwareInterface *hw =
890 reinterpret_cast<QCamera2HardwareInterface *>(device->priv);
911 * FUNCTION : QCamera2HardwareInterface
913 * DESCRIPTION: constructor of QCamera2HardwareInterface
920 QCamera2HardwareInterface::QCamera2HardwareInterface(int cameraId)
964 * FUNCTION : ~QCamera2HardwareInterface
966 * DESCRIPTION: destructor of QCamera2HardwareInterface
972 QCamera2HardwareInterface::~QCamera2HardwareInterface()
993 int QCamera2HardwareInterface::openCamera(struct hw_device_t **hw_device)
1020 int QCamera2HardwareInterface::openCamera()
1078 int QCamera2HardwareInterface::closeCamera()
1122 int QCamera2HardwareInterface::initCapabilities(int cameraId)
1196 int QCamera2HardwareInterface::getCapabilities(int cameraId,
1240 uint8_t QCamera2HardwareInterface::getBufNumRequired(cam_stream_type_t stream_type)
1347 QCameraMemory *QCamera2HardwareInterface::allocateStreamBuf(cam_stream_type_t stream_type,
1436 QCameraHeapMemory *QCamera2HardwareInterface::allocateStreamInfoBuf(
1502 int QCamera2HardwareInterface::setPreviewWindow(
1525 int QCamera2HardwareInterface::setCallBacks(camera_notify_callback notify_cb,
1552 int QCamera2HardwareInterface::enableMsgType(int32_t msg_type)
1570 int QCamera2HardwareInterface::disableMsgType(int32_t msg_type)
1587 int QCamera2HardwareInterface::msgTypeEnabled(int32_t msg_type)
1603 int QCamera2HardwareInterface::msgTypeEnabledWithLock(int32_t msg_type)
1623 int QCamera2HardwareInterface::startPreview()
1648 int QCamera2HardwareInterface::stopPreview()
1676 int QCamera2HardwareInterface::storeMetaDataInBuffers(int enable)
1693 int QCamera2HardwareInterface::startRecording()
1738 int QCamera2HardwareInterface::stopRecording()
1765 int QCamera2HardwareInterface::releaseRecordingFrame(const void * opaque)
1788 int QCamera2HardwareInterface::autoFocus()
1861 int QCamera2HardwareInterface::cancelAutoFocus()
1905 int QCamera2HardwareInterface::takePicture()
1986 int QCamera2HardwareInterface::cancelPicture()
2027 int QCamera2HardwareInterface::takeLiveSnapshot()
2052 int QCamera2HardwareInterface::cancelLiveSnapshot()
2074 char* QCamera2HardwareInterface::getParameters()
2100 int QCamera2HardwareInterface::putParameters(char *parms)
2120 int QCamera2HardwareInterface::sendCommand(int32_t command, int32_t /*arg1*/, int32_t /*arg2*/)
2150 int QCamera2HardwareInterface::registerFaceImage(void *img_ptr,
2231 int QCamera2HardwareInterface::release()
2256 int QCamera2HardwareInterface::dump(int /*fd*/)
2275 int QCamera2HardwareInterface::processAPI(qcamera_sm_evt_enum_t api, void *api_payload)
2293 int QCamera2HardwareInterface::processEvt(qcamera_sm_evt_enum_t evt, void *evt_payload)
2311 int QCamera2HardwareInterface::processSyncEvt(qcamera_sm_evt_enum_t evt, void *evt_payload)
2341 void QCamera2HardwareInterface::camEvtHandle(uint32_t /*camera_handle*/,
2345 QCamera2HardwareInterface *obj = (QCamera2HardwareInterface *)user_data;
2372 void QCamera2HardwareInterface::jpegEvtHandle(jpeg_job_status_t status,
2378 QCamera2HardwareInterface *obj = (QCamera2HardwareInterface *)userdata;
2410 int QCamera2HardwareInterface::thermalEvtHandle(
2436 int32_t QCamera2HardwareInterface::sendEvtNotify(int32_t msg_type,
2461 int32_t QCamera2HardwareInterface::processAutoFocusEvent(cam_auto_focus_data_t &focus_data)
2530 int32_t QCamera2HardwareInterface::processZoomEvent(cam_crop_data_t &crop_info)
2555 int32_t QCamera2HardwareInterface::processPrepSnapshotDoneEvent(
2587 int32_t QCamera2HardwareInterface::processJpegNotify(qcamera_jpeg_evt_payload_t *jpeg_evt)
2601 void QCamera2HardwareInterface::lockAPI()
2617 void QCamera2HardwareInterface::waitAPIResult(qcamera_sm_evt_enum_t api_evt)
2637 void QCamera2HardwareInterface::unlockAPI()
2652 void QCamera2HardwareInterface::signalAPIResult(qcamera_api_result_t *result)
2670 void QCamera2HardwareInterface::signalEvtResult(qcamera_api_result_t *result)
2693 int32_t QCamera2HardwareInterface::addStreamToChannel(QCameraChannel *pChannel,
2732 int32_t QCamera2HardwareInterface::addPreviewChannel()
2795 int32_t QCamera2HardwareInterface::addVideoChannel()
2846 int32_t QCamera2HardwareInterface::addSnapshotChannel()
2894 int32_t QCamera2HardwareInterface::addRawChannel()
2952 int32_t QCamera2HardwareInterface::addZSLChannel()
3035 int32_t QCamera2HardwareInterface::addCaptureChannel()
3109 int32_t QCamera2HardwareInterface::addMetaDataChannel()
3158 QCameraReprocessChannel *QCamera2HardwareInterface::addOnlineReprocChannel(
3250 QCameraReprocessChannel *QCamera2HardwareInterface::addOfflineReprocChannel(
3321 int32_t QCamera2HardwareInterface::addChannel(qcamera_ch_type_enum_t ch_type)
3364 int32_t QCamera2HardwareInterface::delChannel(qcamera_ch_type_enum_t ch_type)
3386 int32_t QCamera2HardwareInterface::startChannel(qcamera_ch_type_enum_t ch_type)
3408 int32_t QCamera2HardwareInterface::stopChannel(qcamera_ch_type_enum_t ch_type)
3429 int32_t QCamera2HardwareInterface::preparePreview()
3476 void QCamera2HardwareInterface::unpreparePreview()
3498 void QCamera2HardwareInterface::playShutter(){
3530 QCameraChannel *QCamera2HardwareInterface::getChannelByHandle(uint32_t channelHandle)
3554 int32_t QCamera2HardwareInterface::processFaceDetectionResult(cam_face_detection_data_t *fd_data)
3682 void QCamera2HardwareInterface::releaseCameraMemory(void *data, void */*cookie*/)
3701 void QCamera2HardwareInterface::returnStreamBuffer(void *data, void *cookie)
3722 int32_t QCamera2HardwareInterface::processHistogramStats(cam_hist_stats_t &/*stats_data*/)
3761 int QCamera2HardwareInterface::updateThermalLevel(
3860 int QCamera2HardwareInterface::updateParameters(const char *parms, bool &needRestart)
3880 int QCamera2HardwareInterface::commitParameterChanges()
3900 bool QCamera2HardwareInterface::needDebugFps()
3915 bool QCamera2HardwareInterface::isCACEnabled()
3934 bool QCamera2HardwareInterface::needReprocess()
3961 bool QCamera2HardwareInterface::needRotationReprocess()
3988 void QCamera2HardwareInterface::getThumbnailSize(cam_dimension_t &dim)
4002 int QCamera2HardwareInterface::getJpegQuality()
4016 int QCamera2HardwareInterface::getJpegRotation() {
4029 QCameraExif *QCamera2HardwareInterface::getExifData()
4184 int32_t QCamera2HardwareInterface::setHistogram(bool histogram_en)
4201 int32_t QCamera2HardwareInterface::setFaceDetection(bool enabled)
4218 int32_t QCamera2HardwareInterface::prepareHardwareForSnapshot(int32_t afNeeded)