Lines Matching refs:vfh
952 struct v4l2_fh *vfh = file->private_data; in vsp1_video_querycap() local
953 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_querycap()
971 struct v4l2_fh *vfh = file->private_data; in vsp1_video_get_format() local
972 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_get_format()
987 struct v4l2_fh *vfh = file->private_data; in vsp1_video_try_format() local
988 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_try_format()
999 struct v4l2_fh *vfh = file->private_data; in vsp1_video_set_format() local
1000 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_set_format()
1029 struct v4l2_fh *vfh = file->private_data; in vsp1_video_streamon() local
1030 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_streamon()
1107 struct v4l2_fh *vfh; in vsp1_video_open() local
1110 vfh = kzalloc(sizeof(*vfh), GFP_KERNEL); in vsp1_video_open()
1111 if (vfh == NULL) in vsp1_video_open()
1114 v4l2_fh_init(vfh, &video->video); in vsp1_video_open()
1115 v4l2_fh_add(vfh); in vsp1_video_open()
1117 file->private_data = vfh; in vsp1_video_open()
1121 v4l2_fh_del(vfh); in vsp1_video_open()
1122 v4l2_fh_exit(vfh); in vsp1_video_open()
1123 kfree(vfh); in vsp1_video_open()
1132 struct v4l2_fh *vfh = file->private_data; in vsp1_video_release() local
1135 if (video->queue.owner == vfh) { in vsp1_video_release()