Lines Matching refs:vfh
982 struct v4l2_fh *vfh = file->private_data; in vsp1_video_querycap() local
983 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_querycap()
1007 struct v4l2_fh *vfh = file->private_data; in vsp1_video_get_format() local
1008 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_get_format()
1023 struct v4l2_fh *vfh = file->private_data; in vsp1_video_try_format() local
1024 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_try_format()
1035 struct v4l2_fh *vfh = file->private_data; in vsp1_video_set_format() local
1036 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_set_format()
1065 struct v4l2_fh *vfh = file->private_data; in vsp1_video_streamon() local
1066 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_streamon()
1138 struct v4l2_fh *vfh; in vsp1_video_open() local
1141 vfh = kzalloc(sizeof(*vfh), GFP_KERNEL); in vsp1_video_open()
1142 if (vfh == NULL) in vsp1_video_open()
1145 v4l2_fh_init(vfh, &video->video); in vsp1_video_open()
1146 v4l2_fh_add(vfh); in vsp1_video_open()
1148 file->private_data = vfh; in vsp1_video_open()
1152 v4l2_fh_del(vfh); in vsp1_video_open()
1153 kfree(vfh); in vsp1_video_open()
1162 struct v4l2_fh *vfh = file->private_data; in vsp1_video_release() local
1165 if (video->queue.owner == vfh) { in vsp1_video_release()