Home | History | Annotate | Download | only in libv4l2

Lines Matching full:ctrl

706     struct v4l2_control ctrl;
710 ctrl.id = id;
717 ret = ioctl(fd, VIDIOC_G_CTRL, &ctrl);
723 *value = ctrl.value;
733 struct v4l2_control ctrl;
737 ctrl.id = id;
738 ctrl.value = value;
745 ctrl);
810 int exynos_v4l2_g_ext_ctrl(int fd, struct v4l2_ext_controls *ctrl)
821 if (ctrl == NULL) {
822 ALOGE("%s: ctrl is NULL", __func__);
826 ret = ioctl(fd, VIDIOC_G_EXT_CTRLS, ctrl);
835 int exynos_v4l2_s_ext_ctrl(int fd, struct v4l2_ext_controls *ctrl)
846 if (ctrl == NULL) {
847 ALOGE("%s: ctrl is NULL", __func__);
851 ret = ioctl(fd, VIDIOC_S_EXT_CTRLS, ctrl);