Home | History | Annotate | Download | only in csh

Lines Matching defs:pv

68     int pv[2], pid;
398 execute(t->t_dcar, wanttty, pipein, pv);
403 execute(t->t_dcdr, wanttty, pv, pipeout);
487 Char **pv;
494 pv = globall(blk);
495 if (pv == NULL) {
502 if (pv[1] != NULL) { /* we need to fix the command vector */
503 Char **av = blkspl(t->t_dcom, &pv[1]);
508 blk[0] = pv[0];
509 free(pv);
622 mypipe(int *pv)
624 if (pipe(pv) < 0)
626 pv[0] = dmove(pv[0], -1);
627 pv[1] = dmove(pv[1], -1);
628 if (pv[0] >= 0 && pv[1] >= 0)