Lines Matching refs:queue
221 struct queue { struct
231 struct queue printqueue; argument
787 static void init_queue(struct queue *q) in init_queue()
797 static __always_inline int queue_len(const struct queue *q) in queue_len()
805 static __always_inline int queue_nr_free(const struct queue *q) in queue_nr_free()
823 static __always_inline void queue_push_to_back(struct queue *q, in queue_push_to_back()
830 static __always_inline struct entry queue_pop_from_front(struct queue *q) in queue_pop_from_front()
838 static __always_inline void queue_cond_signal(struct queue *q) in queue_cond_signal()
843 static __always_inline void queue_cond_wait(struct queue *q) in queue_cond_wait()
848 static __always_inline int queue_try_to_add_entry(struct queue *q, in queue_try_to_add_entry()
863 static struct entry queue_wait_for_entry(struct queue *q) in queue_wait_for_entry()