Lines Matching refs:queue
48 /* Which queue this is within the queue family */
57 * with a queue attached to it, all "active" labels will also be provided
59 * debug label to the queue: opening a label region and inserting a single
95 vk_queue_init(struct vk_queue *queue, struct vk_device *device,
100 vk_queue_finish(struct vk_queue *queue);
102 #define vk_foreach_queue(queue, device) \
103 list_for_each_entry(struct vk_queue, queue, &(device)->queues, link)
105 #define vk_foreach_queue_safe(queue, device) \
106 list_for_each_entry_safe(struct vk_queue, queue, &(device)->queues, link)