Lines Matching refs:Queue
27 Queue *qtab = (Queue *) 0; /* linked list of queues */
28 Queue *ltab[MAXQ]; /* linear list of queues */
33 static Queue *q_rem = (Queue *) 0;
35 static int a_rcv(Queue *, Lextok *, int);
36 static int a_snd(Queue *, Lextok *);
37 static int sa_snd(Queue *, Lextok *);
38 static int s_snd(Queue *, Lextok *);
42 static void sr_talk(Lextok *, int, char *, char *, int, Queue *);
57 Queue *q; in qmake()
75 q = (Queue *) emalloc(sizeof(Queue)); in qmake()
179 sa_snd(Queue *q, Lextok *n) /* sorted asynchronous */ in sa_snd()
219 a_snd(Queue *q, Lextok *n) in a_snd()
255 a_rcv(Queue *q, Lextok *n, int full) in a_rcv()
330 s_snd(Queue *q, Lextok *n) in s_snd()
383 q_rem = (Queue *) 0; in s_snd()
418 difcolumns(Lextok *n, char *tr, int v, int j, Queue *q) in difcolumns()
438 docolumns(Lextok *n, char *tr, int v, int j, Queue *q) in docolumns()
491 sr_talk(Lextok *n, int v, char *tr, char *a, int j, Queue *q) in sr_talk()
579 { Queue *q; in doq()