Home
last modified time | relevance | path

Searched refs:nclist (Results 1 – 5 of 5) sorted by relevance

/dragonfly/bin/sh/pregenerated/
H A Dnodes.c77 ALIGN(sizeof (struct nclist)),
78 ALIGN(sizeof (struct nclist)),
182 calcsize(n->nclist.body, result); in calcsize()
183 calcsize(n->nclist.pattern, result); in calcsize()
184 calcsize(n->nclist.next, result); in calcsize()
278 new->nclist.body = copynode(n->nclist.body, state); in copynode()
279 new->nclist.pattern = copynode(n->nclist.pattern, state); in copynode()
280 new->nclist.next = copynode(n->nclist.next, state); in copynode()
H A Dnodes.h86 struct nclist { struct
144 struct nclist nclist; member
/dragonfly/bin/sh/
H A Deval.c263 next = n->nclist.body; in evaltree()
266 if (n->nclist.body) { in evaltree()
267 evaltree(n->nclist.body, flags & ~EV_EXIT); in evaltree()
271 next = n->nclist.next; in evaltree()
400 for (cp = n->ncase.cases ; cp ; cp = cp->nclist.next) { in evalcase()
403 while (cp->nclist.next && in evalcase()
405 cp->nclist.body == NULL) in evalcase()
406 cp = cp->nclist.next; in evalcase()
407 if (cp->nclist.next && in evalcase()
410 if (cp->nclist.body == NULL) in evalcase()
[all …]
H A Dnodetypes98 NCLIST nclist # a case ending with ;;
104 NCLISTFALLTHRU nclist # a case ending with ;&
H A Dparser.c535 *cpp = cp = (union node *)stalloc(sizeof (struct nclist)); in command()
537 app = &cp->nclist.pattern; in command()
551 cp->nclist.body = list(0); in command()
563 cpp = &cp->nclist.next; in command()