Home | History | Annotate | Download | only in server

Lines Matching defs:pipefd

115     int pipefd[2];
117 if (pipe(pipefd) < 0) {
128 close(pipefd[0]);
129 close(pipefd[1]);
134 close(pipefd[1]);
135 if (pipefd[0] != STDIN_FILENO) {
136 if (dup2(pipefd[0], STDIN_FILENO) != STDIN_FILENO) {
140 close(pipefd[0]);
169 close(pipefd[0]);
171 mDaemonFd = pipefd[1];