/src/games/quiz/ |
quiz.h | 48 typedef struct qentry { struct 49 struct qentry *q_next; /* next one */
|
/src/usr.bin/grep/ |
queue.c | 49 struct qentry { struct 50 STAILQ_ENTRY(qentry) list; 54 static STAILQ_HEAD(, qentry) queue = STAILQ_HEAD_INITIALIZER(queue); 57 static struct qentry *dequeue(void); 62 struct qentry *item; 64 item = grep_malloc(sizeof(struct qentry)); 81 static struct qentry * 84 struct qentry *item; 98 struct qentry *item; 110 struct qentry *item [all...] |
/src/usr.sbin/syslogd/ |
tls.h | 145 struct buf_queue *qentry; member in struct:tls_send_msg
|
sign.c | 634 struct string_queue *qentry, *old_qentry; local in function:sign_send_signature_block 643 STAILQ_FOREACH(qentry, &sg->hashes, entries) 667 qentry = STAILQ_FIRST(&sg->hashes); 673 sg->spri, GlobalSign.gbc, qentry->key, 676 assert(qentry); 678 qentry->data); 680 qentry = STAILQ_NEXT(qentry, entries); 705 qentry = STAILQ_FIRST(&sg->hashes); 707 old_qentry = qentry; 728 struct string_queue *qentry, *tmp_qentry; local in function:sign_free_string_queue 769 struct string_queue *qentry; local in function:sign_append_hash [all...] |
syslogd.c | 2211 * if qentry == NULL: new message, if temporarily undeliverable it will be enqueued 2212 * if qentry != NULL: a temporarily undeliverable message will not be enqueued, 2216 fprintlog(struct filed *f, struct buf_msg *passedbuffer, struct buf_queue *qentry) 2233 DPRINTF(D_CALL, "fprintlog(%p, %p, %p)\n", f, buffer, qentry); 2290 if (qentry 2322 if (!(buffer->flags & SIGN_MSG) && !qentry) { 2423 if (!qentry) 2424 qentry = message_queue_add(f, NEWREF(buffer)); 2425 (void)tls_send(f, lineptr, len, qentry); 2440 } else if (!qentry) /* prevent recursion * 4392 struct buf_queue *qentry; local in function:send_queue 4519 struct buf_queue *qentry = NULL; local in function:message_queue_purge 4677 struct buf_queue *qentry; local in function:message_queue_add 4704 struct buf_queue *qentry; local in function:message_queue_freeall [all...] |