Lines Matching refs:queue

597 				struct vsp1_video_buffer, queue);  in vsp1_video_complete_buffer()
605 list_del(&done->queue); in vsp1_video_complete_buffer()
609 struct vsp1_video_buffer, queue); in vsp1_video_complete_buffer()
634 video->ops->queue(video, buf); in vsp1_video_frame_end()
855 list_add_tail(&buf->queue, &video->irqqueue); in vsp1_video_buffer_queue()
863 video->ops->queue(video, buf); in vsp1_video_buffer_queue()
866 if (vb2_is_streaming(&video->queue) && in vsp1_video_buffer_queue()
959 list_for_each_entry(buffer, &video->irqqueue, queue) in vsp1_video_stop_streaming()
1010 if (format->type != video->queue.type) in vsp1_video_get_format()
1026 if (format->type != video->queue.type) in vsp1_video_try_format()
1040 if (format->type != video->queue.type) in vsp1_video_set_format()
1049 if (vb2_is_busy(&video->queue)) { in vsp1_video_set_format()
1070 if (video->queue.owner && video->queue.owner != file->private_data) in vsp1_video_streamon()
1100 ret = vb2_streamon(&video->queue, type); in vsp1_video_streamon()
1165 if (video->queue.owner == vfh) { in vsp1_video_release()
1166 vb2_queue_release(&video->queue); in vsp1_video_release()
1167 video->queue.owner = NULL; in vsp1_video_release()
1262 video->queue.type = video->type; in vsp1_video_init()
1263 video->queue.io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF; in vsp1_video_init()
1264 video->queue.lock = &video->lock; in vsp1_video_init()
1265 video->queue.drv_priv = video; in vsp1_video_init()
1266 video->queue.buf_struct_size = sizeof(struct vsp1_video_buffer); in vsp1_video_init()
1267 video->queue.ops = &vsp1_video_queue_qops; in vsp1_video_init()
1268 video->queue.mem_ops = &vb2_dma_contig_memops; in vsp1_video_init()
1269 video->queue.timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY; in vsp1_video_init()
1270 ret = vb2_queue_init(&video->queue); in vsp1_video_init()
1277 video->video.queue = &video->queue; in vsp1_video_init()