Lines Matching refs:vou_file
794 struct sh_vou_file *vou_file = priv; in sh_vou_reqbufs() local
801 return videobuf_reqbufs(&vou_file->vbq, req); in sh_vou_reqbufs()
808 struct sh_vou_file *vou_file = priv; in sh_vou_querybuf() local
812 return videobuf_querybuf(&vou_file->vbq, b); in sh_vou_querybuf()
818 struct sh_vou_file *vou_file = priv; in sh_vou_qbuf() local
822 return videobuf_qbuf(&vou_file->vbq, b); in sh_vou_qbuf()
828 struct sh_vou_file *vou_file = priv; in sh_vou_dqbuf() local
832 return videobuf_dqbuf(&vou_file->vbq, b, file->f_flags & O_NONBLOCK); in sh_vou_dqbuf()
839 struct sh_vou_file *vou_file = priv; in sh_vou_streamon() local
850 return videobuf_streamon(&vou_file->vbq); in sh_vou_streamon()
857 struct sh_vou_file *vou_file = priv; in sh_vou_streamoff() local
865 videobuf_streamoff(&vou_file->vbq); in sh_vou_streamoff()
1163 struct sh_vou_file *vou_file = kzalloc(sizeof(struct sh_vou_file), in sh_vou_open() local
1166 if (!vou_file) in sh_vou_open()
1172 kfree(vou_file); in sh_vou_open()
1186 kfree(vou_file); in sh_vou_open()
1191 videobuf_queue_dma_contig_init(&vou_file->vbq, &sh_vou_video_qops, in sh_vou_open()
1199 file->private_data = vou_file; in sh_vou_open()
1207 struct sh_vou_file *vou_file = file->private_data; in sh_vou_release() local
1221 kfree(vou_file); in sh_vou_release()
1229 struct sh_vou_file *vou_file = file->private_data; in sh_vou_mmap() local
1236 ret = videobuf_mmap_mapper(&vou_file->vbq, vma); in sh_vou_mmap()
1244 struct sh_vou_file *vou_file = file->private_data; in sh_vou_poll() local
1250 res = videobuf_poll_stream(file, &vou_file->vbq, wait); in sh_vou_poll()