Lines Matching refs:NREDIR
165 } else if (n2->type == NREDIR) {
168 n3 = (union node *)stalloc(sizeof (struct nredir));
170 n3->nredir.n = n2;
171 n3->nredir.redirect = NULL;
462 n1 = (union node *)stalloc(sizeof (struct nredir));
464 n1->nredir.n = list(0);
465 n1->nredir.redirect = NULL;
508 n2 = (union node *)stalloc(sizeof (struct nredir));
509 n2->type = NREDIR;
510 n2->nredir.n = n1;
513 n1->nredir.redirect = redir;