Home
last modified time | relevance | path

Searched refs:nbinary (Results 1 – 7 of 7) sorted by relevance

/system/core/sh/
Dnodes.c59 SHELL_ALIGN(sizeof (struct nbinary)),
65 SHELL_ALIGN(sizeof (struct nbinary)),
66 SHELL_ALIGN(sizeof (struct nbinary)),
68 SHELL_ALIGN(sizeof (struct nbinary)),
69 SHELL_ALIGN(sizeof (struct nbinary)),
129 calcsize(n->nbinary.ch2);
130 calcsize(n->nbinary.ch1);
225 new->nbinary.ch2 = copynode(n->nbinary.ch2);
226 new->nbinary.ch1 = copynode(n->nbinary.ch1);
Dnodes.h34 struct nbinary { struct
136 struct nbinary nbinary; member
Dnodetypes51 NSEMI nbinary # two commands separated by a semicolon
75 NAND nbinary # the && operator
76 NOR nbinary # the || operator
84 NWHILE nbinary # the while statement. First child is the test
85 NUNTIL nbinary # the until statement
Deval.c234 evaltree(n->nbinary.ch1, flags & EV_TESTED); in evaltree()
237 evaltree(n->nbinary.ch2, flags); in evaltree()
240 evaltree(n->nbinary.ch1, EV_TESTED); in evaltree()
243 evaltree(n->nbinary.ch2, flags); in evaltree()
246 evaltree(n->nbinary.ch1, EV_TESTED); in evaltree()
249 evaltree(n->nbinary.ch2, flags); in evaltree()
320 evaltree(n->nbinary.ch1, EV_TESTED); in evalloop()
337 evaltree(n->nbinary.ch2, flags & EV_TESTED); in evalloop()
Djobs.c1256 cmdtxt(n->nbinary.ch1); in cmdtxt()
1258 cmdtxt(n->nbinary.ch2); in cmdtxt()
1261 cmdtxt(n->nbinary.ch1); in cmdtxt()
1263 cmdtxt(n->nbinary.ch2); in cmdtxt()
1266 cmdtxt(n->nbinary.ch1); in cmdtxt()
1268 cmdtxt(n->nbinary.ch2); in cmdtxt()
1303 cmdtxt(n->nbinary.ch1); in cmdtxt()
1305 cmdtxt(n->nbinary.ch2); in cmdtxt()
Dparser.c179 n3 = (union node *)stalloc(sizeof (struct nbinary)); in list()
181 n3->nbinary.ch1 = n1; in list()
182 n3->nbinary.ch2 = n2; in list()
236 n3 = (union node *)stalloc(sizeof (struct nbinary)); in andor()
238 n3->nbinary.ch1 = n1; in andor()
239 n3->nbinary.ch2 = n2; in andor()
346 n1 = (union node *)stalloc(sizeof (struct nbinary)); in command()
348 n1->nbinary.ch1 = list(0); in command()
353 n1->nbinary.ch2 = list(0); in command()
Dshow.c92 shtree(n->nbinary.ch1, ind, NULL, fp); in shtree()
95 shtree(n->nbinary.ch2, ind, NULL, fp); in shtree()