Lines Matching refs:np
1127 union node *np; in readtoken1() local
1129 np = (union node *)stalloc(sizeof (struct nfile)); in readtoken1()
1131 np->nfile.fd = 1; in readtoken1()
1134 np->type = NAPPEND; in readtoken1()
1136 np->type = NCLOBBER; in readtoken1()
1138 np->type = NTOFD; in readtoken1()
1140 np->type = NTO; in readtoken1()
1144 np->nfile.fd = 0; in readtoken1()
1148 np = (union node *)stalloc(sizeof (struct nhere)); in readtoken1()
1149 np->nfile.fd = 0; in readtoken1()
1151 np->type = NHERE; in readtoken1()
1153 heredoc->here = np; in readtoken1()
1163 np->type = NFROMFD; in readtoken1()
1167 np->type = NFROMTO; in readtoken1()
1171 np->type = NFROM; in readtoken1()
1177 np->nfile.fd = digit_val(fd); in readtoken1()
1178 redirnode = np; in readtoken1()