Home
last modified time | relevance | path

Searched refs:nextnode (Results 1 – 6 of 6) sorted by relevance

/titanic_41/usr/src/cmd/sgs/tsort/common/
H A Dtsort.c62 struct nodelist *nextnode; member
141 for (i = &firstnode; i->nextnode != NULL; i = i->nextnode) { in main()
150 if (i->nextnode == NULL) in main()
192 for (i = &firstnode; i->nextnode != NULL; i = i->nextnode) in index()
197 i->nextnode = (struct nodelist *) in index()
201 i->nextnode->nextnode = NULL; in index()
202 i->nextnode->inedges = NULL; in index()
203 i->nextnode->live = DEAD; in index()
217 for (i = &firstnode; i->nextnode != NULL; i = i->nextnode) in findloop()
224 for (j = &firstnode; j->nextnode != NULL; j = j->nextnode) in findloop()
/titanic_41/usr/src/uts/common/inet/ipf/
H A Dip_htable.c651 iphtent_t *node, zn, *nextnode; local
659 nextnode = NULL;
695 nextnode = iph->iph_list;
698 nextnode = node->ipe_snext;
700 if (nextnode != NULL) {
701 ATOMIC_INC(nextnode->ipe_ref);
702 token->ipt_data = nextnode;
705 nextnode = &zn;
745 err = COPYOUT(nextnode, ilp->ili_data, sizeof(*nextnode));
756 if (nextnode->ipe_snext == NULL)
H A Dip_pool.c768 ip_pool_node_t *node, zn, *nextnode; local
774 nextnode = NULL;
812 nextnode = ipo->ipo_list;
816 nextnode = node->ipn_next;
818 if (nextnode != NULL) {
819 ATOMIC_INC(nextnode->ipn_ref);
820 token->ipt_data = nextnode;
823 nextnode = &zn;
864 err = COPYOUT(nextnode, ilp->ili_data, sizeof(*nextnode));
875 if (nextnode->ipn_next == NULL)
/titanic_41/usr/src/lib/libadm/common/
H A Dgetdgrp.c488 struct dgrplist *nextnode; /* Next one to free */ in freedgrplist() local
490 for (pdgrpent = dgrplistfirst.next; pdgrpent; pdgrpent = nextnode) { in freedgrplist()
491 nextnode = pdgrpent->next; in freedgrplist()
/titanic_41/usr/src/lib/libshell/common/sh/
H A Dnvtree.c41 Namval_t *(*nextnode)(Namval_t*,Dt_t*,Namfun_t*); member
242 dp->nextnode = nfp->disc->nextf; in nv_diropen()
246 dp->hp = (*dp->nextnode)(np,(Dt_t*)0,nfp); in nv_diropen()
249 dp->nextnode = 0; in nv_diropen()
263 static Namval_t *nextnode(struct nvdir *dp) in nextnode() function
265 if(dp->nextnode) in nextnode()
266 return((*dp->nextnode)(dp->hp,dp->root,dp->fun)); in nextnode()
288 dp->hp = nextnode(dp); in nv_dirnext()
305 if(dp->nextnode && !dp->hp && (nq = (Namval_t*)dp->table)) in nv_dirnext()
309 dp->hp = (*dp->nextnode)(np,(Dt_t*)0,dp->fun); in nv_dirnext()
[all …]
/titanic_41/usr/src/cmd/fm/modules/common/disk-monitor/
H A Dutil.c224 struct q_node *nextnode; in queue_remove() local
238 nextnode = qp->nodep->next; in queue_remove()
240 qp->nodep = nextnode; in queue_remove()