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 …]
Dexec.c97 t->ioact != NULL && t->ioact[0] != NULL && in execute()
98 t->ioact[1] == NULL && in execute()
100 (t->ioact[0]->ioflag & IOTYPE) == IOHERE && in execute()
109 if ((rv = herein(t->ioact[0], &cp) /*? 1 : 0*/)) in execute()
134 if (t->ioact != NULL || t->type == TPIPE || t->type == TCOPROC) { in execute()
144 if (t->ioact != NULL) in execute()
145 for (iowp = t->ioact; *iowp != NULL; iowp++) { in execute()
434 if (!Flag(FPOSIX) && !Flag(FSH) && t->left->ioact != NULL) in execute()
435 for (iowp = t->left->ioact; *iowp != NULL; iowp++) in execute()
Dsyn.c520 t->ioact = NULL; in get_command()
524 t->ioact = iops; in get_command()
539 t->ioact = t->left->ioact; in get_command()
540 t->left->ioact = NULL; in get_command()
929 t->ioact = NULL; in newtp()
Deval.c1404 *t->args == NULL && *t->vars == NULL && t->ioact != NULL) { in comsub()
1406 struct ioword *io = *t->ioact; in comsub()
Dsh.h1868 struct ioword **ioact; /* IO actions (eg, < > >>) */ member