Searched defs:nextnode (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/tsort/common/
H A Dtsort.c62 struct nodelist *nextnode; member in struct:nodelist
141 for (i = &firstnode; i->nextnode != NULL; i = i->nextnode) {
150 if (i->nextnode == NULL)
192 for (i = &firstnode; i->nextnode != NULL; i = i->nextnode)
197 i->nextnode = (struct nodelist *)
201 i->nextnode->nextnode = NULL;
202 i->nextnode
[all...]
/illumos-gate/usr/src/lib/libadm/common/
H A Dgetdgrp.c488 struct dgrplist *nextnode; /* Next one to free */ local
490 for (pdgrpent = dgrplistfirst.next; pdgrpent; pdgrpent = nextnode) {
491 nextnode = pdgrpent->next;
/illumos-gate/usr/src/cmd/fm/modules/common/disk-monitor/
H A Dutil.c224 struct q_node *nextnode; local
238 nextnode = qp->nodep->next;
240 qp->nodep = nextnode;
/illumos-gate/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));
[all...]
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));
[all...]
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Dnvtree.c41 Namval_t *(*nextnode)(Namval_t*,Dt_t*,Namfun_t*); member in struct:nvdir
242 dp->nextnode = nfp->disc->nextf;
246 dp->hp = (*dp->nextnode)(np,(Dt_t*)0,nfp);
249 dp->nextnode = 0;
263 static Namval_t *nextnode(struct nvdir *dp) function
265 if(dp->nextnode)
266 return((*dp->nextnode)(dp->hp,dp->root,dp->fun));
288 dp->hp = nextnode(dp);
305 if(dp->nextnode && !dp->hp && (nq = (Namval_t*)dp->table))
309 dp->hp = (*dp->nextnode)(n
[all...]

Completed in 231 milliseconds