HomeSort by relevance Sort by last modified time
    Searched defs:pipe_fd (Results 1 - 9 of 9) sorted by null

  /external/libbrillo/brillo/
process_unittest.cc 182 int pipe_fd = process_.GetPipe(STDERR_FILENO); local
183 EXPECT_GE(pipe_fd, 0);
186 EXPECT_TRUE(base::ReadFileToString(GetFdPath(pipe_fd), &contents));
210 int pipe_fd = process_.GetPipe(STDOUT_FILENO); local
211 EXPECT_GE(pipe_fd, 0);
214 EXPECT_TRUE(base::ReadFileToString(GetFdPath(pipe_fd), &contents));
  /external/libchrome/base/process/
launch_posix.cc 552 int pipe_fd[2]; local
564 if (pipe(pipe_fd) < 0)
569 close(pipe_fd[0]);
570 close(pipe_fd[1]);
590 fd_shuffle1.push_back(InjectionArc(pipe_fd[1], STDOUT_FILENO, true));
592 include_stderr ? pipe_fd[1] : dev_null,
620 close(pipe_fd[1]);
629 bytes_read = HANDLE_EINTR(read(pipe_fd[0], buffer,
636 close(pipe_fd[0]);
  /external/google-breakpad/src/testing/gtest/src/
gtest-death-test.cc 830 int pipe_fd[2]; local
831 GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);
848 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0]));
849 set_write_fd(pipe_fd[1]);
860 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));
861 set_read_fd(pipe_fd[0]);
1106 int pipe_fd[2]; local
    [all...]
  /external/gtest/src/
gtest-death-test.cc 828 int pipe_fd[2]; local
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]; local
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 794 int pipe_fd[2]; local
795 GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);
812 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0]));
813 set_write_fd(pipe_fd[1]);
823 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));
824 set_read_fd(pipe_fd[0]);
1006 int pipe_fd[2]; local
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 792 int pipe_fd[2]; local
793 GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);
810 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0]));
811 set_write_fd(pipe_fd[1]);
821 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));
822 set_read_fd(pipe_fd[0]);
1003 int pipe_fd[2]; local
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 744 int pipe_fd[2]; local
745 GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1);
762 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0]));
763 set_write_fd(pipe_fd[1]);
773 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1]));
774 set_read_fd(pipe_fd[0]);
950 int pipe_fd[2]; local
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-death-test.cc 828 int pipe_fd[2]; local
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]; local
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-death-test.cc 828 int pipe_fd[2]; local
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]; local
    [all...]

Completed in 64 milliseconds