Home
last modified time | relevance | path

Searched refs:listhead (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/ntp/include/
H A Dntp_lists.h8 * the listhead and per-entry next fields are declared as pointers to
19 * LINK_SLIST(listhead, pentry, nextlink)
22 * LINK_TAIL_SLIST(listhead, pentry, nextlink, entrytype)
26 * LINK_SORT_SLIST(listhead, pentry, beforecur, nextlink, entrytype)
33 * UNLINK_HEAD_SLIST(punlinked, listhead, nextlink)
37 * UNLINK_SLIST(punlinked, listhead, ptounlink, nextlink, entrytype)
42 * UNLINK_EXPR_SLIST(punlinked, listhead, expr, nextlink, entrytype)
59 * a variable to refer to a FIFO queue (similar to listhead). The
101 * by the listhead, which is the same type as elements for simplicity.
102 * An empty list's listhead ha
128 LINK_SLIST(listhead,pentry,nextlink) global() argument
134 LINK_TAIL_SLIST(listhead,pentry,nextlink,entrytype) global() argument
149 LINK_SORT_SLIST(listhead,pentry,beforecur,nextlink,entrytype) global() argument
170 UNLINK_HEAD_SLIST(punlinked,listhead,nextlink) global() argument
182 UNLINK_EXPR_SLIST(punlinked,listhead,expr,nextlink,entrytype) global() argument
207 UNLINK_SLIST(punlinked,listhead,ptounlink,nextlink,entrytype) global() argument
212 CHECK_SLIST(listhead,nextlink,entrytype) global() argument
361 INIT_DLIST(listhead,link) global() argument
367 HEAD_DLIST(listhead,link) global() argument
374 TAIL_DLIST(listhead,link) global() argument
381 NEXT_DLIST(listhead,entry,link) global() argument
388 PREV_DLIST(listhead,entry,link) global() argument
395 LINK_DLIST(listhead,pentry,link) global() argument
403 LINK_TAIL_DLIST(listhead,pentry,link) global() argument
419 ITER_DLIST_BEGIN(listhead,iter,link,entrytype) global() argument
431 REV_ITER_DLIST_BEGIN(listhead,iter,link,entrytype) global() argument
[all...]
/freebsd/bin/pkill/
H A Dpkill.c93 SLIST_HEAD(listhead, list);
114 static struct listhead euidlist = SLIST_HEAD_INITIALIZER(euidlist);
115 static struct listhead ruidlist = SLIST_HEAD_INITIALIZER(ruidlist);
116 static struct listhead rgidlist = SLIST_HEAD_INITIALIZER(rgidlist);
117 static struct listhead pgrplist = SLIST_HEAD_INITIALIZER(pgrplist);
118 static struct listhead ppidlist = SLIST_HEAD_INITIALIZER(ppidlist);
119 static struct listhead tdevlist = SLIST_HEAD_INITIALIZER(tdevlist);
120 static struct listhead sidlist = SLIST_HEAD_INITIALIZER(sidlist);
121 static struct listhead jidlist = SLIST_HEAD_INITIALIZER(jidlist);
122 static struct listhead classlist = SLIST_HEAD_INITIALIZER(classlist);
[all …]
/freebsd/sys/netinet/
H A Dsiftr.c269 LIST_HEAD(listhead, flow_hash_node) *counter_hash;
316 siftr_find_flow(struct listhead *counter_list, uint32_t id) in siftr_find_flow()
351 struct listhead *counter_list; in siftr_new_hash_node()
379 struct listhead *counter_list; in siftr_process_pkt()
733 struct listhead *counter_list; in siftr_chkpkt()
880 struct listhead *counter_list; in siftr_chkpkt6()
H A Dsctp_pcb.h180 struct sctppcbhead listhead; member
H A Dsctp_sysctl.c395 LIST_FOREACH(inp, &SCTP_BASE_INFO(listhead), sctp_list) { in sctp_sysctl_handle_assoclist()
426 LIST_FOREACH(inp, &SCTP_BASE_INFO(listhead), sctp_list) { in sctp_sysctl_handle_assoclist()
H A Dsctp_pcb.c2380 LIST_INSERT_HEAD(&SCTP_BASE_INFO(listhead), inp, sctp_list); in sctp_inpcb_alloc()
5590 LIST_INIT(&SCTP_BASE_INFO(listhead)); in sctp_pcb_init()
6854 LIST_FOREACH(inp, &SCTP_BASE_INFO(listhead), sctp_list) { in sctp_drain()
6936 it->inp = LIST_FIRST(&SCTP_BASE_INFO(listhead)); in sctp_initiate_iterator()
/freebsd/lib/libc/nls/
H A Dmsgcat.c117 SLIST_HEAD(listhead, catentry) cache =
/freebsd/sys/ufs/ffs/
H A Dffs_softdep.c11421 struct allocdirectlst *listhead; in handle_allocdirect_partdone() local
11442 listhead = &inodedep->id_extupdt; in handle_allocdirect_partdone()
11444 listhead = &inodedep->id_inoupdt; in handle_allocdirect_partdone()
11445 TAILQ_FOREACH(listadp, listhead, ad_next) { in handle_allocdirect_partdone()
11465 listhead = &inodedep->id_newextupdt; in handle_allocdirect_partdone()
11467 listhead = &inodedep->id_newinoupdt; in handle_allocdirect_partdone()
11468 TAILQ_FOREACH(listadp, listhead, ad_next) in handle_allocdirect_partdone()
11491 TAILQ_REMOVE(listhead, adp, ad_next); in handle_allocdirect_partdone()
13173 struct allocdirectlst *listhead, in flush_deplist() argument
13182 if ((adp = TAILQ_FIRST(listhead)) in flush_deplist()
[all...]
/freebsd/contrib/ntp/
H A DCommitLog[all...]