Home | History | Annotate | Download | only in pppd

Lines Matching refs:pipefd

872     int pipefd[2];
876 if (pipe(pipefd) == -1)
877 pipefd[0] = pipefd[1] = -1;
906 close(pipefd[1]);
907 complete_read(pipefd[0], numbuf, 1);
908 close(pipefd[0]);
1691 int fd, pipefd[2];
1702 if (pipe(pipefd) == -1)
1703 pipefd[0] = pipefd[1] = -1;
1711 close(pipefd[1]);
1712 /* this read() blocks until the close(pipefd[1]) below */
1713 complete_read(pipefd[0], buf, 1);
1714 close(pipefd[0]);
1759 close(pipefd[0]);
1761 close(pipefd[1]);