Lines Matching refs:queue

585 				struct vsp1_video_buffer, queue);  in vsp1_video_complete_buffer()
593 list_del(&done->queue); in vsp1_video_complete_buffer()
597 struct vsp1_video_buffer, queue); in vsp1_video_complete_buffer()
622 video->ops->queue(video, buf); in vsp1_video_frame_end()
773 list_add_tail(&buf->queue, &video->irqqueue); in vsp1_video_buffer_queue()
781 video->ops->queue(video, buf); in vsp1_video_buffer_queue()
784 if (vb2_is_streaming(&video->queue) && in vsp1_video_buffer_queue()
877 list_for_each_entry(buffer, &video->irqqueue, queue) in vsp1_video_stop_streaming()
928 if (format->type != video->queue.type) in vsp1_video_get_format()
944 if (format->type != video->queue.type) in vsp1_video_try_format()
958 if (format->type != video->queue.type) in vsp1_video_set_format()
967 if (vb2_is_busy(&video->queue)) { in vsp1_video_set_format()
988 if (video->queue.owner && video->queue.owner != file->private_data) in vsp1_video_streamon()
1018 ret = vb2_streamon(&video->queue, type); in vsp1_video_streamon()
1083 if (video->queue.owner == vfh) { in vsp1_video_release()
1084 vb2_queue_release(&video->queue); in vsp1_video_release()
1085 video->queue.owner = NULL; in vsp1_video_release()
1180 video->queue.type = video->type; in vsp1_video_init()
1181 video->queue.io_modes = VB2_MMAP | VB2_USERPTR | VB2_DMABUF; in vsp1_video_init()
1182 video->queue.lock = &video->lock; in vsp1_video_init()
1183 video->queue.drv_priv = video; in vsp1_video_init()
1184 video->queue.buf_struct_size = sizeof(struct vsp1_video_buffer); in vsp1_video_init()
1185 video->queue.ops = &vsp1_video_queue_qops; in vsp1_video_init()
1186 video->queue.mem_ops = &vb2_dma_contig_memops; in vsp1_video_init()
1187 video->queue.timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY; in vsp1_video_init()
1188 ret = vb2_queue_init(&video->queue); in vsp1_video_init()
1195 video->video.queue = &video->queue; in vsp1_video_init()