Lines Matching refs:pipe_fd
1111 int pipe_fd[2];
1112 GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);
1129 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0]));
1130 set_write_fd(pipe_fd[1]);
1141 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));
1142 set_read_fd(pipe_fd[0]);
1399 int pipe_fd[2];
1400 GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);
1403 GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1);
1412 StreamableToString(pipe_fd[1]);
1425 const pid_t child_pid = ExecDeathTestSpawnChild(args.Argv(), pipe_fd[0]);
1426 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));
1428 set_read_fd(pipe_fd[0]);