• Home
  • Raw
  • Download

Lines Matching refs:ec

727   EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv);  in set_preview_window()  local
728 if (ec == NULL) { in set_preview_window()
732 return ec->setPreviewWindow(window); in set_preview_window()
740 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in set_callbacks() local
741 if (ec == NULL) { in set_callbacks()
745 ec->setCallbacks(notify_cb, data_cb, data_cb_timestamp, get_memory, user); in set_callbacks()
750 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in enable_msg_type() local
751 if (ec == NULL) { in enable_msg_type()
755 ec->enableMsgType(msg_type); in enable_msg_type()
760 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in disable_msg_type() local
761 if (ec == NULL) { in disable_msg_type()
765 ec->disableMsgType(msg_type); in disable_msg_type()
770 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in msg_type_enabled() local
771 if (ec == NULL) { in msg_type_enabled()
775 return ec->isMsgTypeEnabled(msg_type); in msg_type_enabled()
779 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in start_preview() local
780 if (ec == NULL) { in start_preview()
784 return ec->startPreview(); in start_preview()
788 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in stop_preview() local
789 if (ec == NULL) { in stop_preview()
793 ec->stopPreview(); in stop_preview()
797 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in preview_enabled() local
798 if (ec == NULL) { in preview_enabled()
802 return ec->isPreviewEnabled(); in preview_enabled()
807 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in store_meta_data_in_buffers() local
808 if (ec == NULL) { in store_meta_data_in_buffers()
812 return ec->storeMetaDataInBuffers(enable); in store_meta_data_in_buffers()
816 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in start_recording() local
817 if (ec == NULL) { in start_recording()
821 return ec->startRecording(); in start_recording()
825 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in stop_recording() local
826 if (ec == NULL) { in stop_recording()
830 ec->stopRecording(); in stop_recording()
834 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in recording_enabled() local
835 if (ec == NULL) { in recording_enabled()
839 return ec->isRecordingEnabled(); in recording_enabled()
844 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in release_recording_frame() local
845 if (ec == NULL) { in release_recording_frame()
849 ec->releaseRecordingFrame(opaque); in release_recording_frame()
853 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in auto_focus() local
854 if (ec == NULL) { in auto_focus()
858 return ec->setAutoFocus(); in auto_focus()
862 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in cancel_auto_focus() local
863 if (ec == NULL) { in cancel_auto_focus()
867 return ec->cancelAutoFocus(); in cancel_auto_focus()
871 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in take_picture() local
872 if (ec == NULL) { in take_picture()
876 return ec->takePicture(); in take_picture()
880 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in cancel_picture() local
881 if (ec == NULL) { in cancel_picture()
885 return ec->cancelPicture(); in cancel_picture()
890 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in set_parameters() local
891 if (ec == NULL) { in set_parameters()
895 return ec->setParameters(parms); in set_parameters()
899 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in get_parameters() local
900 if (ec == NULL) { in get_parameters()
904 return ec->getParameters(); in get_parameters()
908 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in put_parameters() local
909 if (ec == NULL) { in put_parameters()
913 ec->putParameters(params); in put_parameters()
918 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in send_command() local
919 if (ec == NULL) { in send_command()
923 return ec->sendCommand(cmd, arg1, arg2); in send_command()
927 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in release() local
928 if (ec == NULL) { in release()
932 ec->releaseCamera(); in release()
936 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>(dev->priv); in dump() local
937 if (ec == NULL) { in dump()
941 return ec->dumpCamera(fd); in dump()
945 EmulatedCamera* ec = reinterpret_cast<EmulatedCamera*>( in close() local
947 if (ec == NULL) { in close()
951 return ec->closeCamera(); in close()