Searched refs:le_next (Results 1 - 25 of 37) sorted by relevance

12

/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_chash.c165 for (cp = CNODEHASH(hfsmp, inum)->lh_first; cp; cp = cp->c_hash.le_next) {
242 for (cp = CNODEHASH(hfsmp, inum)->lh_first; cp; cp = cp->c_hash.le_next) {
314 for (cp = CNODEHASH(hfsmp, inum)->lh_first; cp; cp = cp->c_hash.le_next) {
485 if (cp->c_hash.le_next || cp->c_hash.le_prev) {
487 cp->c_hash.le_next = NULL;
505 cp->c_hash.le_next = NULL;
542 for (cp = CNODEHASH(hfsmp, cnid)->lh_first; cp; cp = cp->c_hash.le_next) {
/darwin-on-arm/xnu/bsd/sys/
H A Dunpcb.h101 u_int32_t le_next; member in struct:_unpcb_list_entry
209 u_int64_t le_next; member in struct:xunpcb64_list_entry
H A Dqueue.h383 struct type *le_next; /* next element */ \
402 &((elm)->field.le_next)) \
459 #define LIST_NEXT(elm, field) ((elm)->field.le_next)
468 TRASHIT((elm)->field.le_next); \
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_shutdown.c477 for (p = allproc.lh_first; p; p = p->p_list.le_next) {
481 for (p = zombproc.lh_first; p; p = p->p_list.le_next) {
498 for (p = allproc.lh_first; p; p = p->p_list.le_next) {
536 for (p = allproc.lh_first; p; p = p->p_list.le_next) {
540 for (p = zombproc.lh_first; p; p = p->p_list.le_next) {
H A Duipc_usrreq.c1482 cp->unp_link.le_next = (u_int32_t)
1483 VM_KERNEL_ADDRPERM(up->unp_link.le_next);
1487 cp->unp_link.le_next = (struct unpcb_compat *)
1488 VM_KERNEL_ADDRPERM(up->unp_link.le_next);
1501 cp->unp_reflink.le_next =
1502 (u_int32_t)VM_KERNEL_ADDRPERM(up->unp_reflink.le_next);
1506 cp->unp_reflink.le_next =
1507 (struct unpcb_compat *)VM_KERNEL_ADDRPERM(up->unp_reflink.le_next);
1581 unp = unp->unp_link.le_next) {
1705 unp = unp->unp_link.le_next) {
[all...]
H A Dkern_proc.c221 for (uip = uipp->lh_first; uip != 0; uip = uip->ui_hash.le_next)
869 for (p = PIDHASH(pid)->lh_first; p != 0; p = p->p_hash.le_next) {
872 for (q = p->p_hash.le_next; q != 0; q = q->p_hash.le_next) {
894 for (p = zombproc.lh_first; p != 0; p = p->p_list.le_next)
929 for (pgrp = PGRPHASH(pgid)->lh_first; pgrp != 0; pgrp = pgrp->pg_hash.le_next)
962 for (sess = SESSHASH(sessid)->lh_first; sess != 0; sess = sess->s_hash.le_next)
1355 for (p = pgrp->pg_members.lh_first; p != 0; p = p->p_pglist.le_next) {
1358 p = p->p_pglist.le_next)
1375 p = p->p_pglist.le_next) {
[all...]
H A Dposix_sem.c231 nnp = pcp->psem_hash.le_next;
296 for (p = pcpp->lh_first; p != 0; p = p->psem_hash.le_next)
320 if (pcp->psem_hash.le_next == pcp)
321 panic("namecache purge le_next");
H A Dposix_shm.c244 nnp = pcp->pshm_hash.le_next;
311 for (p = pcpp->lh_first; p != 0; p = p->pshm_hash.le_next)
357 if (pcp->pshm_hash.le_next == pcp)
358 panic("namecache purge le_next");
H A Dkern_resource.c197 for (p = pg->pg_members.lh_first; p != 0; p = p->p_pglist.le_next) {
212 for (p = allproc.lh_first; p != 0; p = p->p_list.le_next) {
H A Dkern_exit.c1149 for (p = q->p_children.lh_first; p != 0; p = p->p_sibling.le_next) {
1150 if ( p->p_sibling.le_next != 0 )
1377 for (p = q->p_children.lh_first; p != 0; p = p->p_sibling.le_next) {
/darwin-on-arm/xnu/bsd/hfs/hfscommon/BTree/
H A DBTreeNodeReserve.c264 tmp_nrp = tmp_nrp->nr_hash.le_next) {
318 for (nrp = nrhead->lh_first; nrp; nrp = nrp->nr_hash.le_next) {
/darwin-on-arm/xnu/bsd/netinet/
H A Din_pcb.h251 u_int32_t le_next; member in struct:_inpcb_list_entry
358 u_int64_t le_next; member in struct:inpcb64_list_entry
406 u_int64_t le_next; member in struct:xinpcb_list_entry
H A Dtcp_timer.c111 #define TIMERENTRY_TO_TP(te) ((struct tcpcb *)((uintptr_t)te - offsetof(struct tcpcb, tentry.le.le_next)))
116 &((elm)->field.le_next)) \
927 tp->tentry.le.le_next = NULL;
1148 tp->tentry.le.le_next = NULL;
H A Din_arp.c152 * la_le.{le_next,le_prev}, la_rt
260 if (la->la_le.le_next != NULL || la->la_le.le_prev != NULL) {
537 la = la->la_le.le_next;
761 la->la_le.le_next = NULL;
H A Draw_ip.c1028 inp = inp->inp_list.le_next) {
1132 inp = inp->inp_list.le_next) {
H A Din_pcblist.c324 inp = inp->inp_list.le_next) {
/darwin-on-arm/xnu/bsd/netinet6/
H A Dip6_fw.c800 while (chain->chain.le_next
801 && chain->chain.le_next->rule->fw_number
804 while (chain->chain.le_next->rule->fw_number
807 chain = chain->chain.le_next;
940 for (fcp = chainptr->lh_first; fcp; fcp = fcp->chain.le_next) {
952 for (fcp = chainptr->lh_first; fcp; fcp = fcp->chain.le_next) {
980 for (; fcp; fcp = fcp->chain.le_next) {
1007 for (fcp = ip6_fw_chain.lh_first; fcp; fcp = fcp->chain.le_next)
H A Dnd6.h585 #define ndpr_next ndpr_entry.le_next
661 #define pfr_next pfr_entry.le_next
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_srvcache.c239 rp = rp->rc_hash.le_next) {
378 rp = rp->rc_hash.le_next) {
H A Dnfs_node.c219 for (np = nhpp->lh_first; np != 0; np = np->n_hash.le_next) {
394 np->n_monlink.le_next = NFSNOLIST;
949 if (np->n_monlink.le_next != NFSNOLIST) {
958 if (np->n_monlink.le_next != NFSNOLIST) {
960 np->n_monlink.le_next = NFSNOLIST;
H A Dnfs_bio.c221 if (fbp->nb_vnbufs.le_next != NFSNOLIST) {
223 fbp->nb_vnbufs.le_next = NFSNOLIST;
245 if (fbp->nb_vnbufs.le_next != NFSNOLIST) {
247 fbp->nb_vnbufs.le_next = NFSNOLIST;
324 for (; bp != NULL; bp = bp->nb_hash.le_next)
804 if (bp->nb_vnbufs.le_next != NFSNOLIST) {
806 bp->nb_vnbufs.le_next = NFSNOLIST;
917 bp->nb_vnbufs.le_next = NFSNOLIST;
956 bp->nb_vnbufs.le_next = NFSNOLIST;
1090 if (bp->nb_vnbufs.le_next !
[all...]
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_cache.c1637 for (p = ncpp->lh_first; p != 0; p = p->nc_hash.le_next)
1827 next = entry->nc_hash.le_next;
1952 for (ncp = ncpp->lh_first; ncp != 0; ncp = ncp->nc_hash.le_next) {
2028 next = entry->hash_chain.le_next;
2098 for (entry = head->lh_first; entry != NULL; chain_len++, entry = entry->hash_chain.le_next) {
2161 for (entry = head->lh_first; entry != NULL; entry = entry->hash_chain.le_next) {
2200 for (entry=head->lh_first; entry != NULL; entry=entry->hash_chain.le_next) {
H A Dvfs_bio.c219 (bp)->b_hash.le_next = (struct buf *)0; \
228 (bp)->b_vnbufs.le_next = NOLIST; \
249 if ((bp->b_hash.le_next = (head)->lh_first) != NULL)
250 (head)->lh_first->b_hash.le_prev = &(bp)->b_hash.le_next;
268 for(; nbp != NULL; nbp = nbp->b_hash.le_next) {
282 if (bp->b_hash.le_next == bp)
285 if (bp->b_hash.le_next != NULL)
286 bp->b_hash.le_next->b_hash.le_prev = bp->b_hash.le_prev;
287 *bp->b_hash.le_prev = (bp)->b_hash.le_next;
1846 if (bp->b_vnbufs.le_next !
[all...]
H A Dvfs_quota.c539 for (dq = dqh->lh_first; dq; dq = dq->dq_hash.le_next) {
1069 nextdq = dq->dq_hash.le_next;
/darwin-on-arm/xnu/bsd/miscfs/devfs/
H A Ddevfs_fdesc_support.c220 for (fd = fc->lh_first; fd != 0; fd = fd->fd_hash.le_next) {

Completed in 212 milliseconds

12