Home | History | Annotate | Download | only in sh

Lines Matching refs:n1

152 	union node *n1, *n2, *n3;
158 n1 = NULL;
175 if (n1 == NULL) {
176 n1 = n2;
181 n3->nbinary.ch1 = n1;
183 n1 = n3;
194 return n1;
200 return n1;
207 return n1;
212 return n1;
222 union node *n1, *n2, *n3;
225 n1 = pipeline();
233 return n1;
238 n3->nbinary.ch1 = n1;
240 n1 = n3;
249 union node *n1, *n2, *pipenode;
258 n1 = command();
265 lp->n = n1;
273 n1 = pipenode;
279 n2->nnot.com = n1;
282 return n1;
290 union node *n1, *n2;
298 n1 = NULL;
317 n1 = (union node *)stalloc(sizeof (struct nif));
318 n1->type = NIF;
319 n1->nif.test = list(0);
322 n1->nif.ifpart = list(0);
323 n2 = n1;
346 n1 = (union node *)stalloc(sizeof (struct nbinary));
347 n1->type = (lasttoken == TWHILE)? NWHILE : NUNTIL;
348 n1->nbinary.ch1 = list(0);
353 n1->nbinary.ch2 = list(0);
362 n1 = (union node *)stalloc(sizeof (struct nfor));
363 n1->type = NFOR;
364 n1->nfor.var = wordtext;
376 n1->nfor.args = ap;
387 n1->nfor.args = n2;
402 n1->nfor.body = list(0);
408 n1 = (union node *)stalloc(sizeof (struct ncase));
409 n1->type = NCASE;
412 n1->ncase.expr = n2 = (union node *)stalloc(sizeof (struct narg));
420 cpp = &n1->ncase.cases;
462 n1 = (union node *)stalloc(sizeof (struct nredir));
463 n1->type = NSUBSHELL;
464 n1->nredir.n = list(0);
465 n1->nredir.redirect = NULL;
471 n1 = list(0);
491 n1 = simplecmd(rpp, redir);
507 if (n1->type != NSUBSHELL) {
510 n2->nredir.n = n1;
511 n1 = n2;
513 n1->nredir.redirect = redir;
520 n2->nnot.com = n1;
524 return n1;