Home
last modified time | relevance | path

Searched refs:di_next (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/tcsh/
H A Dsh.dir.c162 dhead.di_next = dhead.di_prev = dp; in dinit()
163 dp->di_next = dp->di_prev = &dhead; in dinit()
233 for (dp = dcwd->di_next; dp != dcwd; ) { in dodirs()
235 dp = dp->di_next; in dodirs()
239 dhead.di_next = dhead.di_prev = dp; in dodirs()
240 dp->di_next = dp->di_prev = &dhead; in dodirs()
515 dcwd->di_prev->di_next = dcwd->di_next; in dochngd()
516 dcwd->di_next->di_prev = dcwd->di_prev; in dochngd()
527 dp->di_next = dcwd->di_next; in dochngd()
529 dp->di_prev->di_next = dp; in dochngd()
[all …]
H A Dsh.dir.h38 struct directory *di_next; /* next in loop */ member
H A Dsh.glob.c125 !dcwd->di_next->di_name && !dcwd->di_prev->di_name) in globequal()
H A Dsh.proc.c449 if (pp->p_cwd->di_next == 0) in pfree()
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_ident.c687 next = idp->di_next; in dt_idhash_destroy()
694 next = idp->di_next; in dt_idhash_destroy()
711 for (idp = dhp->dh_hash[i]; idp != NULL; idp = idp->di_next) { in dt_idhash_update()
736 for (idp = dhp->dh_hash[h]; idp != NULL; idp = idp->di_next) { in dt_idhash_lookup()
784 idp->di_next = dhp->dh_hash[h]; in dt_idhash_insert()
804 idp->di_next = dhp->dh_hash[h]; in dt_idhash_xinsert()
822 for (idp = dhp->dh_hash[h]; idp != NULL; idp = idp->di_next) { in dt_idhash_delete()
826 pp = &idp->di_next; in dt_idhash_delete()
830 *pp = idp->di_next; in dt_idhash_delete()
866 for (idp = dhp->dh_hash[i]; idp != NULL; idp = idp->di_next) in dt_idhash_iter()
[all …]
H A Ddt_as.c53 nip = dip->di_next; in dt_irlist_destroy()
62 dlp->dl_last->di_next = dip; in dt_irlist_append()
286 for (i = 0, dip = dlp->dl_list; dip != NULL; dip = dip->di_next) { in dt_as()
409 for (dip = dlp->dl_list; dip != NULL; dip = dip->di_next) { in dt_as()
H A Ddt_as.h43 struct dt_irnode *di_next; /* next instruction */ member
H A Ddt_ident.h82 struct dt_ident *di_next; /* pointer to next ident in hash chain */ member
H A Ddt_open.c1663 ndp = idp->di_next; in dtrace_close()
H A Ddt_cg.c60 dip->di_next = NULL; in dt_cg_node_alloc()
H A Ddt_parser.c2781 idp->di_next = dtp->dt_externs; in dt_xcook_ident()
/freebsd/sys/kern/
H A Dkern_shutdown.c417 TAILQ_FOREACH(di, &dumper_configs, di_next) { in doadump()
1072 TAILQ_FOREACH(di, &dumper_configs, di_next) { in dumpdevname_sysctl_handler()
1337 TAILQ_FOREACH(listdi, &dumper_configs, di_next) { in dumper_insert()
1339 TAILQ_INSERT_BEFORE(listdi, newdi, di_next); in dumper_insert()
1346 TAILQ_INSERT_TAIL(&dumper_configs, newdi, di_next); in dumper_insert()
1356 TAILQ_INSERT_HEAD(&dumper_configs, newdi, di_next);
1362 TAILQ_REMOVE(&dumper_configs, di, di_next);
1426 TAILQ_FOREACH_SAFE(di, &dumper_configs, di_next, sdi) { in dumper_remove()
1429 TAILQ_REMOVE(&dumper_configs, di, di_next); in dumper_remove()
/freebsd/sys/sys/
H A Dconf.h356 TAILQ_ENTRY(dumperinfo) di_next;