Home
last modified time | relevance | path

Searched refs:qnext (Results 1 – 5 of 5) sorted by relevance

/freebsd/usr.bin/grep/
H A Dqueue.c54 static qentry_t *qlist, *qnext; variable
60 qlist = qnext = qpool = grep_calloc(Bflag, sizeof(*qpool)); in initqueue()
82 item = qnext; in enqueue()
83 qnext = advqueue(qnext); in enqueue()
124 qlist = qnext = qpool; in printqueue()
140 qlist = qnext = qpool; in clearqueue()
/freebsd/sys/netpfil/ipfw/
H A Ddn_sched_rr.c64 struct rr_queue *qnext; /* */ member
92 si->tail->qnext = q; in rr_append()
94 q->qnext = si->head; /* make it circular */ in rr_append()
110 si->head = si->head->qnext; in rr_remove_head()
111 si->tail->qnext = si->head; in rr_remove_head()
129 for (prev = si->head; prev; prev = prev->qnext) { in remove_queue_q()
130 if (prev->qnext != q) in remove_queue_q()
132 prev->qnext = q->qnext; in remove_queue_q()
146 si->head = si->head->qnext; in next_pointer()
147 si->tail = si->tail->qnext; in next_pointer()
/freebsd/sys/netgraph/
H A Dng_ppp.c1674 struct ng_ppp_frag *qent, *qnext; in ng_ppp_check_packet() local
1687 qnext = TAILQ_NEXT(qent, f_qent); in ng_ppp_check_packet()
1688 if (qnext == NULL) /* end of queue */ in ng_ppp_check_packet()
1690 if (qnext->seq != MP_NEXT_RECV_SEQ(priv, qent->seq)) in ng_ppp_check_packet()
1692 qent = qnext; in ng_ppp_check_packet()
1707 struct ng_ppp_frag *qent, *qnext; in ng_ppp_get_packet() local
1713 for (tail = NULL; qent != NULL; qent = qnext) { in ng_ppp_get_packet()
1714 qnext = TAILQ_NEXT(qent, f_qent); in ng_ppp_get_packet()
1727 qnext = NULL; in ng_ppp_get_packet()
1745 struct ng_ppp_frag *qent, *qnext = NULL; in ng_ppp_frag_trim() local
[all …]
/freebsd/contrib/ofed/libibnetdisc/
H A Dquery_smp.c49 smp->qnext = NULL; in queue_smp()
54 engine->smp_queue_tail->qnext = smp; in queue_smp()
67 engine->smp_queue_head = head->qnext; in get_smp()
H A Dinternal.h96 struct ibnd_smp *qnext; member