Lines Matching refs:pipe_fd
1125 int pipe_fd[2];
1126 GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);
1143 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0]));
1144 set_write_fd(pipe_fd[1]);
1155 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));
1156 set_read_fd(pipe_fd[0]);
1425 int pipe_fd[2];
1426 GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);
1429 GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1);
1438 + StreamableToString(pipe_fd[1]);
1451 const pid_t child_pid = ExecDeathTestSpawnChild(args.Argv(), pipe_fd[0]);
1452 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));
1454 set_read_fd(pipe_fd[0]);