Lines Matching refs:narg
259 pnext = &n->narg.next; in parsewordexp()
483 app = &n2->narg.next; in command()
495 n2 = (union node *)stalloc(sizeof (struct narg)); in command()
497 n2->narg.text = argvars; in command()
498 n2->narg.backquote = NULL; in command()
499 n2->narg.next = NULL; in command()
540 app = &ap->narg.next; in command()
543 ap->narg.next = NULL; in command()
650 app = &n->narg.next; in simplecmd()
657 } else if (lasttoken == TLP && app == &args->narg.next in simplecmd()
668 if (!noexpand(n->narg.text) || quoteflag || in simplecmd()
669 strchr(n->narg.text, '/') || in simplecmd()
671 n->narg.text[strlen(n->narg.text) - 1])) in simplecmd()
673 rmescapes(n->narg.text); in simplecmd()
674 if (find_builtin(n->narg.text, &special) >= 0 && in simplecmd()
678 n->narg.next = command(); in simplecmd()
700 n = (union node *)stalloc(sizeof (struct narg)); in makename()
702 n->narg.next = NULL; in makename()
703 n->narg.text = wordtext; in makename()
704 n->narg.backquote = backquotelist; in makename()
2253 n.narg.type = NARG; in expandstr()
2254 n.narg.next = NULL; in expandstr()
2255 n.narg.text = wordtext; in expandstr()
2256 n.narg.backquote = backquotelist; in expandstr()