Lines Matching refs:vfh
900 struct v4l2_fh *vfh = file->private_data; in vsp1_video_querycap() local
901 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_querycap()
925 struct v4l2_fh *vfh = file->private_data; in vsp1_video_get_format() local
926 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_get_format()
941 struct v4l2_fh *vfh = file->private_data; in vsp1_video_try_format() local
942 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_try_format()
953 struct v4l2_fh *vfh = file->private_data; in vsp1_video_set_format() local
954 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_set_format()
983 struct v4l2_fh *vfh = file->private_data; in vsp1_video_streamon() local
984 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_streamon()
1056 struct v4l2_fh *vfh; in vsp1_video_open() local
1059 vfh = kzalloc(sizeof(*vfh), GFP_KERNEL); in vsp1_video_open()
1060 if (vfh == NULL) in vsp1_video_open()
1063 v4l2_fh_init(vfh, &video->video); in vsp1_video_open()
1064 v4l2_fh_add(vfh); in vsp1_video_open()
1066 file->private_data = vfh; in vsp1_video_open()
1070 v4l2_fh_del(vfh); in vsp1_video_open()
1071 kfree(vfh); in vsp1_video_open()
1080 struct v4l2_fh *vfh = file->private_data; in vsp1_video_release() local
1083 if (video->queue.owner == vfh) { in vsp1_video_release()