Home | History | Annotate | Download | only in pppd

Lines Matching refs:pipefd

798     int pipefd[2];
802 if (pipe(pipefd) == -1)
803 pipefd[0] = pipefd[1] = -1;
830 close(pipefd[1]);
831 complete_read(pipefd[0], numbuf, 1);
832 close(pipefd[0]);
1513 int fd, pipefd[2];
1524 if (pipe(pipefd) == -1)
1525 pipefd[0] = pipefd[1] = -1;
1533 close(pipefd[1]);
1534 /* this read() blocks until the close(pipefd[1]) below */
1535 complete_read(pipefd[0], buf, 1);
1536 close(pipefd[0]);
1581 close(pipefd[0]);
1583 close(pipefd[1]);