Lines Matching refs:ioword
31 static void pioact(struct shf *, struct ioword *);
34 static struct ioword **iocopy(struct ioword **, Area *);
35 static void iofree(struct ioword **, Area *);
62 struct ioword **ioact; in ptree()
249 pioact(struct shf *shf, struct ioword *iop) in pioact()
524 pioact(shf, va_arg(va, struct ioword *)); in vfptreef()
687 static struct ioword **
688 iocopy(struct ioword **iow, Area *ap) in iocopy()
690 struct ioword **ior; in iocopy()
696 ior = alloc2(ior - iow + 1, sizeof(struct ioword *), ap); in iocopy()
699 struct ioword *p, *q; in iocopy()
702 q = alloc(sizeof(struct ioword), ap); in iocopy()
756 iofree(struct ioword **iow, Area *ap) in iofree()
758 struct ioword **iop; in iofree()
759 struct ioword *p; in iofree()
944 struct ioword **ioact, *iop; in dumpioact()