Lines Matching refs:vfh

1060 	struct v4l2_fh *vfh;  in v4l_s_priority()  local
1066 vfh = file->private_data; in v4l_s_priority()
1067 return v4l2_prio_change(vfd->prio, &vfh->prio, *p); in v4l_s_priority()
1676 struct v4l2_fh *vfh = in v4l_queryctrl() local
1679 if (vfh && vfh->ctrl_handler) in v4l_queryctrl()
1680 return v4l2_queryctrl(vfh->ctrl_handler, p); in v4l_queryctrl()
1693 struct v4l2_fh *vfh = in v4l_query_ext_ctrl() local
1696 if (vfh && vfh->ctrl_handler) in v4l_query_ext_ctrl()
1697 return v4l2_query_ext_ctrl(vfh->ctrl_handler, p); in v4l_query_ext_ctrl()
1710 struct v4l2_fh *vfh = in v4l_querymenu() local
1713 if (vfh && vfh->ctrl_handler) in v4l_querymenu()
1714 return v4l2_querymenu(vfh->ctrl_handler, p); in v4l_querymenu()
1727 struct v4l2_fh *vfh = in v4l_g_ctrl() local
1732 if (vfh && vfh->ctrl_handler) in v4l_g_ctrl()
1733 return v4l2_g_ctrl(vfh->ctrl_handler, p); in v4l_g_ctrl()
1761 struct v4l2_fh *vfh = in v4l_s_ctrl() local
1766 if (vfh && vfh->ctrl_handler) in v4l_s_ctrl()
1767 return v4l2_s_ctrl(vfh, vfh->ctrl_handler, p); in v4l_s_ctrl()
1790 struct v4l2_fh *vfh = in v4l_g_ext_ctrls() local
1794 if (vfh && vfh->ctrl_handler) in v4l_g_ext_ctrls()
1795 return v4l2_g_ext_ctrls(vfh->ctrl_handler, p); in v4l_g_ext_ctrls()
1809 struct v4l2_fh *vfh = in v4l_s_ext_ctrls() local
1813 if (vfh && vfh->ctrl_handler) in v4l_s_ext_ctrls()
1814 return v4l2_s_ext_ctrls(vfh, vfh->ctrl_handler, p); in v4l_s_ext_ctrls()
1828 struct v4l2_fh *vfh = in v4l_try_ext_ctrls() local
1832 if (vfh && vfh->ctrl_handler) in v4l_try_ext_ctrls()
1833 return v4l2_try_ext_ctrls(vfh->ctrl_handler, p); in v4l_try_ext_ctrls()
2341 struct v4l2_fh *vfh = NULL; in __video_do_ioctl() local
2352 vfh = file->private_data; in __video_do_ioctl()
2358 !((info->flags & INFO_FL_CTRL) && vfh && vfh->ctrl_handler)) in __video_do_ioctl()
2361 if (vfh && (info->flags & INFO_FL_PRIO)) { in __video_do_ioctl()
2362 ret = v4l2_prio_check(vfd->prio, vfh->prio); in __video_do_ioctl()
2386 vfh ? v4l2_prio_check(vfd->prio, vfh->prio) >= 0 : 0, in __video_do_ioctl()