Home
last modified time | relevance | path

Searched refs:ioact (Results 1 – 5 of 5) sorted by relevance

/external/mksh/src/
Dtree.c49 struct ioword **ioact; in ptree() local
69 t->ioact != NULL && t->ioact[0] != NULL && in ptree()
70 t->ioact[1] == NULL && in ptree()
72 (t->ioact[0]->flag & IOTYPE) == IOHERE) { in ptree()
213 if ((ioact = t->ioact) != NULL) { in ptree()
216 while (*ioact != NULL) in ptree()
217 pioact(shf, indent, *ioact++); in ptree()
219 ioact = t->ioact; in ptree()
220 while (*ioact != NULL) { in ptree()
221 struct ioword *iop = *ioact++; in ptree()
[all …]
Dexec.c90 t->ioact != NULL && t->ioact[0] != NULL && in execute()
91 t->ioact[1] == NULL && in execute()
93 (t->ioact[0]->flag & IOTYPE) == IOHERE && in execute()
99 herein(t->ioact[0], &cp) == 0 && cp && *cp) { in execute()
104 t->ioact = NULL; in execute()
154 if (t->ioact != NULL || t->type == TPIPE || t->type == TCOPROC) { in execute()
164 if (t->ioact != NULL) in execute()
165 for (iowp = t->ioact; *iowp != NULL; iowp++) { in execute()
Dsyn.c497 t->ioact = NULL; in get_command()
501 t->ioact = iops; in get_command()
906 t->ioact = NULL; in newtp()
Deval.c1309 *t->args == NULL && *t->vars == NULL && t->ioact != NULL) { in comsub()
1311 struct ioword *io = *t->ioact; in comsub()
Dsh.h1267 struct ioword **ioact; /* IO actions (eg, < > >>) */ member