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
67 t->ioact != NULL && t->ioact[0] != NULL && in ptree()
68 t->ioact[1] == NULL && in ptree()
70 (t->ioact[0]->ioflag & IOTYPE) == IOHERE && in ptree()
224 if ((ioact = t->ioact) != NULL) { in ptree()
227 while (*ioact != NULL) in ptree()
228 pioact(shf, *ioact++); in ptree()
230 ioact = t->ioact; in ptree()
231 while (*ioact != NULL) { in ptree()
232 struct ioword *iop = *ioact++; in ptree()
[all …]
Dsyn.c516 t->ioact = NULL; in get_command()
520 t->ioact = iops; in get_command()
535 t->ioact = t->left->ioact; in get_command()
536 t->left->ioact = NULL; in get_command()
925 t->ioact = NULL; in newtp()
Dexec.c96 t->ioact != NULL && t->ioact[0] != NULL && in execute()
97 t->ioact[1] == NULL && in execute()
99 (t->ioact[0]->ioflag & IOTYPE) == IOHERE && in execute()
108 if ((rv = herein(t->ioact[0], &cp) /*? 1 : 0*/)) in execute()
133 if (t->ioact != NULL || t->type == TPIPE || t->type == TCOPROC) { in execute()
143 if (t->ioact != NULL) in execute()
144 for (iowp = t->ioact; *iowp != NULL; iowp++) { in execute()
Deval.c1393 *t->args == NULL && *t->vars == NULL && t->ioact != NULL) { in comsub()
1395 struct ioword *io = *t->ioact; in comsub()
Dsh.h1654 struct ioword **ioact; /* IO actions (eg, < > >>) */ member