Searched refs:listhead (Results 1 - 14 of 14) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dkern_lockf.c1159 * Parameters: listhead Lock list head on which waiters may
1172 lf_wakelock(struct lockf *listhead, boolean_t force_all) argument
1177 if (force_all == FALSE && (listhead->lf_flags & F_WAKE1_SAFE))
1180 while (!TAILQ_EMPTY(&listhead->lf_blkhd)) {
1181 wakelock = TAILQ_FIRST(&listhead->lf_blkhd);
1182 TAILQ_REMOVE(&listhead->lf_blkhd, wakelock, lf_block);
1195 if (!TAILQ_EMPTY(&listhead->lf_blkhd)) {
1196 TAILQ_CONCAT(&wakelock->lf_blkhd, &listhead->lf_blkhd, lf_block);
H A Dkpi_socketfilter.c1204 LIST_FOREACH(inp, tcbinfo.listhead, inp_list) {
1220 LIST_FOREACH(inp, udbinfo.listhead, inp_list) {
/darwin-on-arm/xnu/bsd/netinet/
H A Din_pcblist.c323 for (inp = pcbinfo->listhead->lh_first, i = 0; inp && i < n;
394 for (inp = LIST_FIRST(pcbinfo->listhead); inp; inp = LIST_NEXT(inp, inp_list)) {
415 for (inp = LIST_FIRST(pcbinfo->listhead);
H A Dip_divert.c154 divcbinfo.listhead = &divcb;
602 for (inp = LIST_FIRST(divcbinfo.listhead), i = 0; inp && i < n;
H A Draw_ip.c158 ripcbinfo.listhead = &ripcb;
1027 for (inp = ripcbinfo.listhead->lh_first, i = 0; inp && i < n;
1131 for (inp = ripcbinfo.listhead->lh_first, i = 0; inp && i < n;
H A Din_pcb.h510 struct inpcbhead *listhead; member in struct:inpcbinfo
H A Dudp_usrreq.c224 udbinfo.listhead = &udb;
1037 for (inp = LIST_FIRST(udbinfo.listhead), i = 0; inp && i < n;
1141 for (inp = LIST_FIRST(udbinfo.listhead), i = 0; inp && i < n;
H A Dtcp_subr.c368 tcbinfo.listhead = &tcb;
1221 for (inpb = LIST_FIRST(tcbinfo.listhead); inpb;
1426 for (inp = LIST_FIRST(tcbinfo.listhead), i = 0; inp && i < n;
1613 for (inp = LIST_FIRST(tcbinfo.listhead), i = 0; inp && i < n;
H A Din_pcb.c341 LIST_INSERT_HEAD(pcbinfo->listhead, inp, inp_list);
1171 LIST_FOREACH(inp, pcbinfo->listhead, inp_list) {
/darwin-on-arm/xnu/bsd/net/
H A Dntstat.c885 for (inp = LIST_FIRST(tcbinfo.listhead); inp; inp = LIST_NEXT(inp, inp_list))
1132 for (inp = LIST_FIRST(udbinfo.listhead); inp; inp = LIST_NEXT(inp, inp_list))
H A Dbpf.c816 LIST_FOREACH(inp, pcbinfo->listhead, inp_list) {
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_fsevents.c521 void *junkptr=zalloc_noblock(event_zone), *listhead=kfse_list_head.lh_first; local
524 printf("add_fsevent: kfse_list head %p ; num_pending_rename %d\n", listhead, num_pending_rename);
H A Dvfs_bio.c1347 struct buflists *listhead; member in struct:buf_iterate_info_t
1373 list[num_lists].listhead = &vp->v_dirtyblkhd;
1378 list[num_lists].listhead = &vp->v_cleanblkhd;
1392 LIST_INSERT_HEAD(list[i].listhead, bp, b_vnbufs);
/darwin-on-arm/xnu/bsd/netinet6/
H A Din6_pcb.c792 struct inpcbhead *head = pcbinfo->listhead;

Completed in 127 milliseconds