Home | History | Annotate | Download | only in pppd

Lines Matching defs:pipefd

801     int pipefd[2];
805 if (pipe(pipefd) == -1)
806 pipefd[0] = pipefd[1] = -1;
833 close(pipefd[1]);
834 complete_read(pipefd[0], numbuf, 1);
835 close(pipefd[0]);
1594 int fd, pipefd[2];
1605 if (pipe(pipefd) == -1)
1606 pipefd[0] = pipefd[1] = -1;
1614 close(pipefd[1]);
1615 /* this read() blocks until the close(pipefd[1]) below */
1616 complete_read(pipefd[0], buf, 1);
1617 close(pipefd[0]);
1661 close(pipefd[0]);
1663 close(pipefd[1]);