• Home
  • Raw
  • Download

Lines Matching refs:vidq

626 	struct cx88_dmaqueue  *q    = &dev->vidq;  in buffer_queue()
694 return &fh->vidq; in get_queue()
751 videobuf_queue_sg_init(&fh->vidq, &cx8800_video_qops, in video_open()
804 return videobuf_read_one(&fh->vidq, data, count, ppos, in video_read()
829 mutex_lock(&fh->vidq.vb_lock); in video_poll()
832 if (list_empty(&fh->vidq.stream)) in video_poll()
834 buf = list_entry(fh->vidq.stream.next,struct cx88_buffer,vb.stream); in video_poll()
837 buf = (struct cx88_buffer*)fh->vidq.read_buf; in video_poll()
846 mutex_unlock(&fh->vidq.vb_lock); in video_poll()
863 videobuf_queue_cancel(&fh->vidq); in video_release()
866 if (fh->vidq.read_buf) { in video_release()
867 buffer_release(&fh->vidq,fh->vidq.read_buf); in video_release()
868 kfree(fh->vidq.read_buf); in video_release()
877 videobuf_mmap_free(&fh->vidq); in video_release()
1007 f->fmt.pix.field = fh->vidq.field; in vidioc_g_fmt_vid_cap()
1073 fh->vidq.field = f->fmt.pix.field; in vidioc_s_fmt_vid_cap()
1411 struct cx88_dmaqueue *q = &dev->vidq; in cx8800_vid_timeout()
1468 cx88_wakeup(core, &dev->vidq, count); in cx8800_vid_irq()
1484 restart_video_queue(dev,&dev->vidq); in cx8800_vid_irq()
1719 INIT_LIST_HEAD(&dev->vidq.active); in cx8800_initdev()
1720 INIT_LIST_HEAD(&dev->vidq.queued); in cx8800_initdev()
1721 dev->vidq.timeout.function = cx8800_vid_timeout; in cx8800_initdev()
1722 dev->vidq.timeout.data = (unsigned long)dev; in cx8800_initdev()
1723 init_timer(&dev->vidq.timeout); in cx8800_initdev()
1724 cx88_risc_stopper(dev->pci,&dev->vidq.stopper, in cx8800_initdev()
1924 btcx_riscmem_free(dev->pci,&dev->vidq.stopper); in cx8800_finidev()
1938 if (!list_empty(&dev->vidq.active)) { in cx8800_suspend()
1941 del_timer(&dev->vidq.timeout); in cx8800_suspend()
1999 if (!list_empty(&dev->vidq.active)) { in cx8800_resume()
2001 restart_video_queue(dev,&dev->vidq); in cx8800_resume()