Home
last modified time | relevance | path

Searched refs:queued_bufs (Results 1 – 7 of 7) sorted by relevance

/linux/drivers/media/usb/airspy/
H A Dairspy.c107 struct list_head queued_bufs; member
220 if (list_empty(&s->queued_bufs)) in airspy_get_next_fill_buf()
223 buf = list_entry(s->queued_bufs.next, in airspy_get_next_fill_buf()
448 while (!list_empty(&s->queued_bufs)) { in airspy_cleanup_queued_bufs()
451 buf = list_entry(s->queued_bufs.next, in airspy_cleanup_queued_bufs()
514 list_add_tail(&buf->list, &s->queued_bufs); in airspy_buf_queue()
566 list_for_each_entry_safe(buf, tmp, &s->queued_bufs, list) { in airspy_start_streaming()
987 INIT_LIST_HEAD(&s->queued_bufs); in airspy_probe()
/linux/drivers/media/usb/pwc/
H A Dpwc-if.c192 if (list_empty(&pdev->queued_bufs)) in pwc_get_next_fill_buf()
195 buf = list_entry(pdev->queued_bufs.next, struct pwc_frame_buf, list); in pwc_get_next_fill_buf()
559 while (!list_empty(&pdev->queued_bufs)) { in pwc_cleanup_queued_bufs()
562 buf = list_entry(pdev->queued_bufs.next, struct pwc_frame_buf, in pwc_cleanup_queued_bufs()
704 list_add_tail(&buf->list, &pdev->queued_bufs); in buffer_queue()
1041 INIT_LIST_HEAD(&pdev->queued_bufs); in usb_pwc_probe()
H A Dpwc.h216 struct list_head queued_bufs; member
/linux/drivers/media/usb/msi2500/
H A Dmsi2500.c114 struct list_head queued_bufs; member
150 if (list_empty(&dev->queued_bufs)) in msi2500_get_next_fill_buf()
153 buf = list_entry(dev->queued_bufs.next, struct msi2500_frame_buf, list); in msi2500_get_next_fill_buf()
551 while (!list_empty(&dev->queued_bufs)) { in msi2500_cleanup_queued_bufs()
554 buf = list_entry(dev->queued_bufs.next, in msi2500_cleanup_queued_bufs()
631 list_add_tail(&buf->list, &dev->queued_bufs); in msi2500_buf_queue()
1182 INIT_LIST_HEAD(&dev->queued_bufs); in msi2500_probe()
/linux/drivers/media/platform/xilinx/
H A Dxilinx-dma.h94 struct list_head queued_bufs; member
/linux/drivers/media/dvb-frontends/
H A Drtl2832_sdr.c115 struct list_head queued_bufs; member
160 if (list_empty(&dev->queued_bufs)) in rtl2832_sdr_get_next_fill_buf()
163 buf = list_entry(dev->queued_bufs.next, in rtl2832_sdr_get_next_fill_buf()
410 while (!list_empty(&dev->queued_bufs)) { in rtl2832_sdr_cleanup_queued_bufs()
413 buf = list_entry(dev->queued_bufs.next, in rtl2832_sdr_cleanup_queued_bufs()
481 list_add_tail(&buf->list, &dev->queued_bufs); in rtl2832_sdr_buf_queue()
1356 INIT_LIST_HEAD(&dev->queued_bufs); in rtl2832_sdr_probe()
/linux/drivers/media/pci/zoran/
H A Dzoran_device.c747 buf = list_first_entry_or_null(&zr->queued_bufs, struct zr_buffer, queue); in zoran_feed_stat_com()