Lines Matching refs:vfh
1068 struct v4l2_fh *vfh; in v4l_s_priority() local
1074 vfh = file->private_data; in v4l_s_priority()
1075 return v4l2_prio_change(vfd->prio, &vfh->prio, *p); in v4l_s_priority()
1907 struct v4l2_fh *vfh = in v4l_queryctrl() local
1910 if (vfh && vfh->ctrl_handler) in v4l_queryctrl()
1911 return v4l2_queryctrl(vfh->ctrl_handler, p); in v4l_queryctrl()
1924 struct v4l2_fh *vfh = in v4l_query_ext_ctrl() local
1927 if (vfh && vfh->ctrl_handler) in v4l_query_ext_ctrl()
1928 return v4l2_query_ext_ctrl(vfh->ctrl_handler, p); in v4l_query_ext_ctrl()
1941 struct v4l2_fh *vfh = in v4l_querymenu() local
1944 if (vfh && vfh->ctrl_handler) in v4l_querymenu()
1945 return v4l2_querymenu(vfh->ctrl_handler, p); in v4l_querymenu()
1958 struct v4l2_fh *vfh = in v4l_g_ctrl() local
1963 if (vfh && vfh->ctrl_handler) in v4l_g_ctrl()
1964 return v4l2_g_ctrl(vfh->ctrl_handler, p); in v4l_g_ctrl()
1992 struct v4l2_fh *vfh = in v4l_s_ctrl() local
1997 if (vfh && vfh->ctrl_handler) in v4l_s_ctrl()
1998 return v4l2_s_ctrl(vfh, vfh->ctrl_handler, p); in v4l_s_ctrl()
2021 struct v4l2_fh *vfh = in v4l_g_ext_ctrls() local
2025 if (vfh && vfh->ctrl_handler) in v4l_g_ext_ctrls()
2026 return v4l2_g_ext_ctrls(vfh->ctrl_handler, p); in v4l_g_ext_ctrls()
2040 struct v4l2_fh *vfh = in v4l_s_ext_ctrls() local
2044 if (vfh && vfh->ctrl_handler) in v4l_s_ext_ctrls()
2045 return v4l2_s_ext_ctrls(vfh, vfh->ctrl_handler, p); in v4l_s_ext_ctrls()
2059 struct v4l2_fh *vfh = in v4l_try_ext_ctrls() local
2063 if (vfh && vfh->ctrl_handler) in v4l_try_ext_ctrls()
2064 return v4l2_try_ext_ctrls(vfh->ctrl_handler, p); in v4l_try_ext_ctrls()
2572 struct v4l2_fh *vfh = NULL; in __video_do_ioctl() local
2583 vfh = file->private_data; in __video_do_ioctl()
2589 !((info->flags & INFO_FL_CTRL) && vfh && vfh->ctrl_handler)) in __video_do_ioctl()
2592 if (vfh && (info->flags & INFO_FL_PRIO)) { in __video_do_ioctl()
2593 ret = v4l2_prio_check(vfd->prio, vfh->prio); in __video_do_ioctl()
2617 vfh ? v4l2_prio_check(vfd->prio, vfh->prio) >= 0 : 0, in __video_do_ioctl()