Lines Matching defs:CqCharBuff
61 typedef struct CqCharBuff CqCharBuff;
62 struct CqCharBuff {
63 CqCharBuff *next; /* The next node in the list of buffers */
73 FreeList *bufmem; /* A free-list of CqCharBuff structures */
75 CqCharBuff *head; /* The head of the list of output buffers */
76 CqCharBuff *tail; /* The tail of the list of output buffers */
120 * Allocate the freelist of CqCharBuff structures.
122 cq->bufmem = _new_FreeList(sizeof(CqCharBuff), 1);
222 CqCharBuff *node = (CqCharBuff *) _new_FreeListNode(cq->bufmem);
390 CqCharBuff *node = cq->buffers.head;
398 node = (CqCharBuff *) _del_FreeListNode(cq->bufmem, node);