Home | History | Annotate | Download | only in ksh

Lines Matching defs:iop

19 static void 	pioact ARGS((struct shf *f, int indent, struct ioword *iop));
197 struct ioword *iop = *ioact++;
200 if ((iop->flag & IOTYPE) == IOHERE && iop->heredoc) {
202 shf_puts(iop->heredoc, shf);
204 evalstr(iop->delim, 0));
218 pioact(shf, indent, iop)
221 struct ioword *iop;
223 int flag = iop->flag;
229 : (type == IODUP && (iop->unit == !(flag & IORDUP))) ?
230 iop->unit
231 : iop->unit + 1;
232 if (iop->unit != expected)
233 tputc('0' + iop->unit, shf);
266 if (iop->delim)
267 fptreef(shf, indent, "%S ", iop->delim);
268 } else if (iop->name)
269 fptreef(shf, indent, (iop->flag & IONAMEXP) ? "%s " : "%S ",
270 iop->name);
738 struct ioword **iop;
741 for (iop = iow; (p = *iop++) != NULL; ) {