Home
last modified time | relevance | path

Searched refs:pipefd (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/bionic/
Dpipe.cpp31 int pipe(int pipefd[2]) { in pipe()
32 return pipe2(pipefd, 0); in pipe()
/bionic/tests/
Dgtest_main.cpp617 int pipefd[2]; in RunChildProcess() local
618 if (pipe(pipefd) == -1) { in RunChildProcess()
622 if (fcntl(pipefd[0], F_SETFL, O_NONBLOCK) == -1) { in RunChildProcess()
632 close(pipefd[0]); in RunChildProcess()
635 dup2(pipefd[1], STDOUT_FILENO); in RunChildProcess()
636 dup2(pipefd[1], STDERR_FILENO); in RunChildProcess()
645 close(pipefd[1]); in RunChildProcess()
647 child_proc.child_read_fd = pipefd[0]; in RunChildProcess()
Ddlext_test.cpp510 int pipefd[2]; in TEST_F() local
511 ASSERT_NOERROR(pipe(pipefd)); in TEST_F()