/linux/drivers/media/usb/uvc/ |
H A D | uvc_metadata.c | 28 struct v4l2_fh *vfh = file->private_data; in uvc_meta_v4l2_querycap() local 29 struct uvc_streaming *stream = video_get_drvdata(vfh->vdev); in uvc_meta_v4l2_querycap() 44 struct v4l2_fh *vfh = file->private_data; in uvc_meta_v4l2_get_format() local 45 struct uvc_streaming *stream = video_get_drvdata(vfh->vdev); in uvc_meta_v4l2_get_format() 48 if (format->type != vfh->vdev->queue->type) in uvc_meta_v4l2_get_format() 62 struct v4l2_fh *vfh = file->private_data; in uvc_meta_v4l2_try_format() local 63 struct uvc_streaming *stream = video_get_drvdata(vfh->vdev); in uvc_meta_v4l2_try_format() 68 if (format->type != vfh->vdev->queue->type) in uvc_meta_v4l2_try_format() 83 struct v4l2_fh *vfh = file->private_data; in uvc_meta_v4l2_set_format() local 84 struct uvc_streaming *stream = video_get_drvdata(vfh->vdev); in uvc_meta_v4l2_set_format() [all …]
|
/linux/drivers/media/platform/renesas/vsp1/ |
H A D | vsp1_video.c | 887 struct v4l2_fh *vfh = file->private_data; in vsp1_video_querycap() local 888 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_querycap() 904 struct v4l2_fh *vfh = file->private_data; in vsp1_video_get_format() local 905 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_get_format() 920 struct v4l2_fh *vfh = file->private_data; in vsp1_video_try_format() local 921 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_try_format() 932 struct v4l2_fh *vfh = file->private_data; in vsp1_video_set_format() local 933 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_set_format() 962 struct v4l2_fh *vfh = file->private_data; in vsp1_video_streamon() local 963 struct vsp1_video *video = to_vsp1_video(vfh->vdev); in vsp1_video_streamon() [all …]
|
/linux/drivers/media/v4l2-core/ |
H A D | v4l2-subdev.c | 88 v4l2_fh_init(&subdev_fh->vfh, vdev); in subdev_open() 89 v4l2_fh_add(&subdev_fh->vfh); in subdev_open() 90 file->private_data = &subdev_fh->vfh; in subdev_open() 113 v4l2_fh_del(&subdev_fh->vfh); in subdev_open() 114 v4l2_fh_exit(&subdev_fh->vfh); in subdev_open() 125 struct v4l2_fh *vfh = file->private_data; in subdev_close() local 126 struct v4l2_subdev_fh *subdev_fh = to_v4l2_subdev_fh(vfh); in subdev_close() 131 v4l2_fh_del(vfh); in subdev_close() 132 v4l2_fh_exit(vfh); in subdev_close() 613 struct v4l2_fh *vfh = file->private_data; in subdev_do_ioctl() local [all …]
|
H A D | v4l2-ioctl.c | 1192 struct v4l2_fh *vfh; in v4l_s_priority() local 1198 vfh = file->private_data; in v4l_s_priority() 1199 return v4l2_prio_change(vfd->prio, &vfh->prio, *p); in v4l_s_priority() 2288 struct v4l2_fh *vfh = in v4l_queryctrl() local 2291 if (vfh && vfh->ctrl_handler) in v4l_queryctrl() 2292 return v4l2_queryctrl(vfh->ctrl_handler, p); in v4l_queryctrl() 2305 struct v4l2_fh *vfh = in v4l_query_ext_ctrl() local 2308 if (vfh && vfh->ctrl_handler) in v4l_query_ext_ctrl() 2309 return v4l2_query_ext_ctrl(vfh->ctrl_handler, p); in v4l_query_ext_ctrl() 2322 struct v4l2_fh *vfh = in v4l_querymenu() local [all …]
|
H A D | v4l2-flash-led-class.c | 572 if (!v4l2_fh_is_singular(&fh->vfh)) in v4l2_flash_open() 622 if (!v4l2_fh_is_singular(&fh->vfh)) in v4l2_flash_close()
|
H A D | v4l2-ctrls-api.c | 1213 struct v4l2_fh *vfh = file->private_data; in v4l2_ctrl_log_status() local 1216 v4l2_ctrl_handler_log_status(vfh->ctrl_handler, in v4l2_ctrl_log_status()
|
/linux/drivers/media/platform/qcom/camss/ |
H A D | camss-video.c | 586 struct v4l2_fh *vfh; in video_open() local 591 vfh = kzalloc(sizeof(*vfh), GFP_KERNEL); in video_open() 592 if (vfh == NULL) { in video_open() 597 v4l2_fh_init(vfh, vdev); in video_open() 598 v4l2_fh_add(vfh); in video_open() 600 file->private_data = vfh; in video_open()
|
/linux/drivers/media/platform/ti/omap3isp/ |
H A D | ispvideo.h | 190 struct v4l2_fh vfh; member 197 #define to_isp_video_fh(fh) container_of(fh, struct isp_video_fh, vfh)
|
/linux/include/media/ |
H A D | v4l2-subdev.h | 1152 struct v4l2_fh vfh; member 1167 container_of(fh, struct v4l2_subdev_fh, vfh)
|
/linux/drivers/staging/media/atomisp/pci/ |
H A D | atomisp_fops.c | 532 v4l2_fh_init(&fh.vfh, vdev); in atomisp_release()
|
/linux/drivers/net/ethernet/chelsio/cxgb4/ |
H A D | cxgb4.h | 1907 u32 *vfl, u32 *vfh, bool sleep_ok);
|
H A D | t4_hw.c | 5524 u32 *vfl, u32 *vfh, bool sleep_ok) in t4_read_rss_vf_config() argument 5546 t4_tp_pio_read(adapter, vfh, 1, TP_RSS_VFH_CONFIG_A, sleep_ok); in t4_read_rss_vf_config()
|
/linux/mm/ |
H A D | shmem.c | 4415 static int shmem_match(struct inode *ino, void *vfh) in shmem_match() argument 4417 __u32 *fh = vfh; in shmem_match()
|