Home | History | Annotate | Download | only in server

Lines Matching defs:pipefd

154     int pipefd[2];
156 if (pipe(pipefd) < 0) {
167 close(pipefd[0]);
168 close(pipefd[1]);
173 close(pipefd[1]);
174 if (pipefd[0] != STDIN_FILENO) {
175 if (dup2(pipefd[0], STDIN_FILENO) != STDIN_FILENO) {
179 close(pipefd[0]);
217 close(pipefd[0]);
219 mDaemonFd = pipefd[1];