Home
last modified time | relevance | path

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

/external/mksh/src/
Dtree.c45 struct ioword **ioact; in ptree() local
178 if ((ioact = t->ioact) != NULL) { in ptree()
181 while (*ioact != NULL) in ptree()
182 pioact(shf, indent, *ioact++); in ptree()
184 for (ioact = t->ioact; *ioact != NULL; ) { in ptree()
185 struct ioword *iop = *ioact++; in ptree()
478 r->ioact = (t->ioact == NULL) ? NULL : iocopy(t->ioact, ap); in tcopy()
691 if (t->ioact != NULL) in tfree()
692 iofree(t->ioact, ap); in tfree()
Dsyn.c475 t->ioact = NULL; in get_command()
479 t->ioact = iops; in get_command()
853 t->ioact = NULL; in newtp()
Dexec.c103 if (t->ioact != NULL || t->type == TPIPE || t->type == TCOPROC) { in execute()
110 if (t->ioact != NULL) in execute()
111 for (iowp = t->ioact; *iowp != NULL; iowp++) { in execute()
Deval.c1133 *t->args == NULL && *t->vars == NULL && t->ioact != NULL) { in comsub()
1134 struct ioword *io = *t->ioact; in comsub()
Dsh.h1057 struct ioword **ioact; /* IO actions (eg, < > >>) */ member