Lines Matching refs:file

649 isp_video_querycap(struct file *file, void *fh, struct v4l2_capability *cap)  in isp_video_querycap()  argument
651 struct isp_video *video = video_drvdata(file); in isp_video_querycap()
665 isp_video_get_format(struct file *file, void *fh, struct v4l2_format *format) in isp_video_get_format() argument
668 struct isp_video *video = video_drvdata(file); in isp_video_get_format()
681 isp_video_set_format(struct file *file, void *fh, struct v4l2_format *format) in isp_video_set_format() argument
684 struct isp_video *video = video_drvdata(file); in isp_video_set_format()
739 isp_video_try_format(struct file *file, void *fh, struct v4l2_format *format) in isp_video_try_format() argument
741 struct isp_video *video = video_drvdata(file); in isp_video_try_format()
767 isp_video_get_selection(struct file *file, void *fh, struct v4l2_selection *sel) in isp_video_get_selection() argument
769 struct isp_video *video = video_drvdata(file); in isp_video_get_selection()
824 isp_video_set_selection(struct file *file, void *fh, struct v4l2_selection *sel) in isp_video_set_selection() argument
826 struct isp_video *video = video_drvdata(file); in isp_video_set_selection()
864 isp_video_get_param(struct file *file, void *fh, struct v4l2_streamparm *a) in isp_video_get_param() argument
867 struct isp_video *video = video_drvdata(file); in isp_video_get_param()
882 isp_video_set_param(struct file *file, void *fh, struct v4l2_streamparm *a) in isp_video_set_param() argument
885 struct isp_video *video = video_drvdata(file); in isp_video_set_param()
900 isp_video_reqbufs(struct file *file, void *fh, struct v4l2_requestbuffers *rb) in isp_video_reqbufs() argument
903 struct isp_video *video = video_drvdata(file); in isp_video_reqbufs()
914 isp_video_querybuf(struct file *file, void *fh, struct v4l2_buffer *b) in isp_video_querybuf() argument
917 struct isp_video *video = video_drvdata(file); in isp_video_querybuf()
928 isp_video_qbuf(struct file *file, void *fh, struct v4l2_buffer *b) in isp_video_qbuf() argument
931 struct isp_video *video = video_drvdata(file); in isp_video_qbuf()
942 isp_video_dqbuf(struct file *file, void *fh, struct v4l2_buffer *b) in isp_video_dqbuf() argument
945 struct isp_video *video = video_drvdata(file); in isp_video_dqbuf()
949 ret = vb2_dqbuf(&vfh->queue, b, file->f_flags & O_NONBLOCK); in isp_video_dqbuf()
1079 isp_video_streamon(struct file *file, void *fh, enum v4l2_buf_type type) in isp_video_streamon() argument
1082 struct isp_video *video = video_drvdata(file); in isp_video_streamon()
1186 isp_video_streamoff(struct file *file, void *fh, enum v4l2_buf_type type) in isp_video_streamoff() argument
1189 struct isp_video *video = video_drvdata(file); in isp_video_streamoff()
1241 isp_video_enum_input(struct file *file, void *fh, struct v4l2_input *input) in isp_video_enum_input() argument
1253 isp_video_g_input(struct file *file, void *fh, unsigned int *input) in isp_video_g_input() argument
1261 isp_video_s_input(struct file *file, void *fh, unsigned int input) in isp_video_s_input() argument
1293 static int isp_video_open(struct file *file) in isp_video_open() argument
1295 struct isp_video *video = video_drvdata(file); in isp_video_open()
1340 file->private_data = &handle->vfh; in isp_video_open()
1352 static int isp_video_release(struct file *file) in isp_video_release() argument
1354 struct isp_video *video = video_drvdata(file); in isp_video_release()
1355 struct v4l2_fh *vfh = file->private_data; in isp_video_release()
1359 isp_video_streamoff(file, vfh, video->type); in isp_video_release()
1371 file->private_data = NULL; in isp_video_release()
1378 static __poll_t isp_video_poll(struct file *file, poll_table *wait) in isp_video_poll() argument
1380 struct isp_video_fh *vfh = to_isp_video_fh(file->private_data); in isp_video_poll()
1381 struct isp_video *video = video_drvdata(file); in isp_video_poll()
1385 ret = vb2_poll(&vfh->queue, file, wait); in isp_video_poll()
1391 static int isp_video_mmap(struct file *file, struct vm_area_struct *vma) in isp_video_mmap() argument
1393 struct isp_video_fh *vfh = to_isp_video_fh(file->private_data); in isp_video_mmap()