Home
last modified time | relevance | path

Searched refs:v4l2_ioctl (Results 1 – 2 of 2) sorted by relevance

/device/moto/shamu/camera/QCamera/stack/mm-camera-interface/src/
Dmm_camera.c174 struct msm_camera_v4l2_ioctl_t v4l2_ioctl; in mm_camera_event_notify() local
188 memset(&v4l2_ioctl, 0, sizeof(v4l2_ioctl)); in mm_camera_event_notify()
189 v4l2_ioctl.trans_code = node->u.evt.e.pri_evt.trans_id; in mm_camera_event_notify()
190 v4l2_ioctl.len = node->u.evt.e.pri_evt.data_length; in mm_camera_event_notify()
191 v4l2_ioctl.ioctl_ptr = &(node->u.evt.e.pri_evt.evt_data[0]); in mm_camera_event_notify()
193 &v4l2_ioctl); in mm_camera_event_notify()
1330 struct msm_camera_v4l2_ioctl_t v4l2_ioctl; in mm_camera_send_private_ioctl() local
1334 memset(&v4l2_ioctl, 0, sizeof(v4l2_ioctl)); in mm_camera_send_private_ioctl()
1335 v4l2_ioctl.id = cmd_id; in mm_camera_send_private_ioctl()
1336 v4l2_ioctl.len = cmd_length; in mm_camera_send_private_ioctl()
[all …]
Dmm_camera_stream.c124 struct msm_camera_v4l2_ioctl_t v4l2_ioctl; in get_stream_inst_handle() local
126 v4l2_ioctl.id = MSM_V4L2_PID_INST_HANDLE; in get_stream_inst_handle()
127 v4l2_ioctl.ioctl_ptr = &inst_handle; in get_stream_inst_handle()
128 v4l2_ioctl.len = sizeof(inst_handle); in get_stream_inst_handle()
129 rc = ioctl(my_obj->fd, MSM_CAM_V4L2_IOCTL_PRIVATE_G_CTRL, &v4l2_ioctl); in get_stream_inst_handle()