Searched refs:nbinary (Results 1 – 7 of 7) sorted by relevance
| /third_party/uapp/dash/src/ |
| A D | nodes.c | 69 SHELL_ALIGN(sizeof (struct nbinary)), 70 SHELL_ALIGN(sizeof (struct nbinary)), 71 SHELL_ALIGN(sizeof (struct nbinary)), 159 calcsize(n->nbinary.ch2); 160 calcsize(n->nbinary.ch1); 262 new->nbinary.ch2 = copynode(n->nbinary.ch2); 263 new->nbinary.ch1 = copynode(n->nbinary.ch1); 399 encodenode(n->nbinary.ch2); in encodenode() 400 encodenode(n->nbinary.ch1); in encodenode() 510 decodenode(&n->nbinary.ch2); in decodenode() [all …]
|
| A D | nodes.h | 60 struct nbinary { struct 153 struct nbinary nbinary; member
|
| A D | nodetypes | 73 NAND nbinary # the && operator 74 NOR nbinary # the || operator 76 NSEMI nbinary # two commands separated by a semicolon 87 NWHILE nbinary # the while statement. First child is the test 88 NUNTIL nbinary # the until statement
|
| A D | parser.c | 192 n3 = (union node *)stalloc(sizeof (struct nbinary)); in list() 194 n3->nbinary.ch1 = n1; in list() 195 n3->nbinary.ch2 = n2; in list() 235 n3 = (union node *)stalloc(sizeof (struct nbinary)); in andor() 237 n3->nbinary.ch1 = n1; in andor() 238 n3->nbinary.ch2 = n2; in andor() 337 n1 = (union node *)stalloc(sizeof (struct nbinary)); in command() 339 n1->nbinary.ch1 = list(0); in command() 344 n1->nbinary.ch2 = list(0); in command()
|
| A D | show.c | 83 shtree(n->nbinary.ch1, ind, NULL, fp); in shtree() 86 shtree(n->nbinary.ch2, ind, NULL, fp); in shtree()
|
| A D | eval.c | 272 status = evaltree(n->nbinary.ch1, in evaltree() 276 n = n->nbinary.ch2; in evaltree() 362 i = evaltree(n->nbinary.ch1, EV_TESTED); in evalloop() 372 status = evaltree(n->nbinary.ch2, flags); in evalloop()
|
| A D | jobs.c | 1253 cmdtxt(n->nbinary.ch1); in cmdtxt() 1255 n = n->nbinary.ch2; in cmdtxt() 1292 cmdtxt(n->nbinary.ch1); in cmdtxt() 1293 n = n->nbinary.ch2; in cmdtxt()
|
Completed in 13 milliseconds