Lines Matching refs:rpp
415 union node *redir, **rpp; in command() local
423 rpp = &redir; in command()
427 *rpp = n2 = redirnode; in command()
428 rpp = &n2->nfile.next; in command()
592 n1 = simplecmd(rpp, redir); in command()
600 *rpp = n2 = redirnode; in command()
601 rpp = &n2->nfile.next; in command()
605 *rpp = NULL; in command()
621 simplecmd(union node **rpp, union node *redir) in simplecmd() argument
624 union node **orig_rpp = rpp; in simplecmd()
632 rpp = &redir; in simplecmd()
641 orig_rpp = rpp; in simplecmd()
654 *rpp = n = redirnode; in simplecmd()
655 rpp = &n->nfile.next; in simplecmd()
658 && rpp == orig_rpp) { in simplecmd()
687 *rpp = NULL; in simplecmd()