Lines Matching refs:ops

151         ALOGE("%s: camera HAL calling preview ops while there is no preview window!", __FUNCTION__);
192 ALOGE("%s: camera HAL calling preview ops while there is no preview window!", __FUNCTION__);
202 ALOGE("%s: camera HAL calling preview ops while there is no preview window!", __FUNCTION__);
212 ALOGE("%s: camera HAL calling preview ops while there is no preview window!", __FUNCTION__);
224 ALOGE("%s: camera HAL calling preview ops while there is no preview window!", __FUNCTION__);
237 ALOGE("%s: camera HAL calling preview ops while there is no preview window!", __FUNCTION__);
247 ALOGE("%s: camera HAL calling preview ops while there is no preview window!", __FUNCTION__);
257 ALOGE("%s: camera HAL calling preview ops while there is no preview window!", __FUNCTION__);
268 ALOGE("%s: camera HAL calling preview ops while there is no preview window!", __FUNCTION__);
280 ALOGE("%s: camera HAL calling preview ops while there is no preview window!", __FUNCTION__);
634 if (mDevice->ops->dump) { // It's fine if the HAL doesn't implement dump()
635 return getHidlStatus(mDevice->ops->dump(mDevice, fd));
671 if (mDevice->ops->set_callbacks) {
672 mDevice->ops->set_callbacks(mDevice,
688 if (mDevice->ops->set_preview_window) {
689 return getHidlStatus(mDevice->ops->set_preview_window(mDevice,
702 if (mDevice->ops->enable_msg_type) {
703 mDevice->ops->enable_msg_type(mDevice, msgType);
715 if (mDevice->ops->disable_msg_type) {
716 mDevice->ops->disable_msg_type(mDevice, msgType);
728 if (mDevice->ops->msg_type_enabled) {
729 return mDevice->ops->msg_type_enabled(mDevice, msgType);
741 if (mDevice->ops->start_preview) {
742 return getHidlStatus(mDevice->ops->start_preview(mDevice));
754 if (mDevice->ops->stop_preview) {
755 mDevice->ops->stop_preview(mDevice);
767 if (mDevice->ops->preview_enabled) {
768 return mDevice->ops->preview_enabled(mDevice);
780 if (mDevice->ops->store_meta_data_in_buffers) {
781 status_t s = mDevice->ops->store_meta_data_in_buffers(mDevice, enable);
797 if (mDevice->ops->start_recording) {
798 return getHidlStatus(mDevice->ops->start_recording(mDevice));
810 if (mDevice->ops->stop_recording) {
811 mDevice->ops->stop_recording(mDevice);
823 if (mDevice->ops->recording_enabled) {
824 return mDevice->ops->recording_enabled(mDevice);
835 if (mDevice->ops->release_recording_frame) {
869 mDevice->ops->release_recording_frame(mDevice, data);
907 if (mDevice->ops->auto_focus) {
908 return getHidlStatus(mDevice->ops->auto_focus(mDevice));
920 if (mDevice->ops->cancel_auto_focus) {
921 return getHidlStatus(mDevice->ops->cancel_auto_focus(mDevice));
933 if (mDevice->ops->take_picture) {
934 return getHidlStatus(mDevice->ops->take_picture(mDevice));
946 if (mDevice->ops->cancel_picture) {
947 return getHidlStatus(mDevice->ops->cancel_picture(mDevice));
959 if (mDevice->ops->set_parameters) {
960 return getHidlStatus(mDevice->ops->set_parameters(mDevice, params.c_str()));
974 if (mDevice->ops->get_parameters) {
975 char *temp = mDevice->ops->get_parameters(mDevice);
977 if (mDevice->ops->put_parameters) {
978 mDevice->ops->put_parameters(mDevice, temp);
994 if (mDevice->ops->send_command) {
995 return getHidlStatus(mDevice->ops->send_command(mDevice, (int32_t) cmd, arg1, arg2));