Home | History | Annotate | Download | only in syslogd

Lines Matching defs:qentry

634 	struct string_queue *qentry, *old_qentry;
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;
708 qentry = STAILQ_NEXT(old_qentry, entries);
728 struct string_queue *qentry, *tmp_qentry;
731 STAILQ_FOREACH_SAFE(qentry, sqhead, entries, tmp_qentry) {
732 STAILQ_REMOVE(sqhead, qentry, string_queue, entries);
733 FREEPTR(qentry->data);
734 free(qentry);
769 struct string_queue *qentry;
773 if ((qentry = STAILQ_LAST(&sg->hashes, string_queue, entries))
774 && !strcmp(qentry->data, hash)) {
780 MALLOC(qentry, sizeof(*qentry));
781 qentry->key = sign_assign_msg_num(sg);
782 qentry->data = hash;
783 STAILQ_INSERT_TAIL(&sg->hashes, qentry, entries);
785 "#%" PRIdFAST64 "\n", hash, sg, qentry->key);