Searched refs:ioact (Results 1 – 5 of 5) sorted by relevance
62 struct ioword **ioact; in ptree() local80 t->ioact != NULL && t->ioact[0] != NULL && in ptree()81 t->ioact[1] == NULL && in ptree()83 (t->ioact[0]->ioflag & IOTYPE) == IOHERE && in ptree()243 if ((ioact = t->ioact) != NULL) in ptree()244 while (*ioact != NULL) in ptree()245 pioact(shf, *ioact++); in ptree()592 r->ioact = (t->ioact == NULL) ? NULL : iocopy(t->ioact, ap); in tcopy()746 if (t->ioact != NULL) in tfree()747 iofree(t->ioact, ap); in tfree()[all …]
511 t->ioact = NULL; in get_command()514 t->ioact = alloc2(iopn, sizeof(struct ioword *), ATEMP); in get_command()515 memcpy(t->ioact, iops, iopn * sizeof(struct ioword *)); in get_command()530 t->ioact = t->left->ioact; in get_command()531 t->left->ioact = NULL; in get_command()920 t->ioact = NULL; in newtp()
97 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()
1554 *t->args == NULL && *t->vars == NULL && t->ioact != NULL) { in comsub()1556 struct ioword *io = *t->ioact; in comsub()
1941 struct ioword **ioact; /* IO actions (eg, < > >>) */ member