Home | History | Annotate | Download | only in src

Lines Matching defs:pipe_fd

828   int pipe_fd[2];
829 GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);
846 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0]));
847 set_write_fd(pipe_fd[1]);
858 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));
859 set_read_fd(pipe_fd[0]);
1112 int pipe_fd[2];
1113 GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);
1116 GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1);
1125 + StreamableToString(pipe_fd[1]);
1138 const pid_t child_pid = ExecDeathTestSpawnChild(args.Argv(), pipe_fd[0]);
1139 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));
1141 set_read_fd(pipe_fd[0]);