HomeSort by relevance Sort by last modified time
    Searched refs:write_fd (Results 26 - 50 of 65) sorted by null

12 3

  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-death-test.cc 258 FILE* parent = posix::FDOpen(flag->write_fd(), "w");
389 int write_fd() const { return write_fd_; } function in class:testing::internal::DeathTestImpl
478 GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1));
694 set_write_fd(flag->write_fd());
1277 const int write_fd = local
1305 int write_fd = -1; local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/src/
gtest-death-test.cc 258 FILE* parent = posix::FDOpen(flag->write_fd(), "w");
389 int write_fd() const { return write_fd_; } function in class:testing::internal::DeathTestImpl
478 GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1));
694 set_write_fd(flag->write_fd());
1277 const int write_fd = local
1305 int write_fd = -1; local
    [all...]
  /external/perfetto/src/base/
task_runner_unittest.cc 53 write_fd.reset(pipe_fds[1]);
65 PERFETTO_DCHECK(write(write_fd.get(), &b, 1) == 1);
69 ScopedFile write_fd; member in struct:perfetto::base::__anon31959::Pipe
265 ScopedFile write_fd(pipe_fds[1]);
267 write_fd.reset();
  /external/ltp/testcases/kernel/ipc/pipeio/
pipeio.c 123 static int write_fd; variable
477 write_fd = fds[1];
511 write_fd = open(pname, O_WRONLY);
512 if (write_fd == -1) {
517 if (ndelay && fcntl(write_fd, F_SETFL, O_NONBLOCK) == -1) {
554 nb = lio_write_buffer(write_fd, iotype, writebuf, size,
632 SAFE_CLOSE(cleanup, write_fd);
  /external/ltp/testcases/kernel/sched/tool/
time-schedule.c 95 int write_fd = -1; local
183 write_fd = fds[1];
226 write(write_fd, &ch, 1);
  /system/core/adb/
fdevent_test.cpp 33 FdHandler(int read_fd, int write_fd) : read_fd_(read_fd), write_fd_(write_fd) {
  /external/libbrillo/brillo/
process_unittest.cc 250 int write_fd = process_.GetPipe(STDIN_FILENO); local
252 EXPECT_TRUE(base::WriteFile(GetFdPath(write_fd), kMessage, strlen(kMessage)));
253 close(write_fd);
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-death-test-internal.h 251 int write_fd() const { return write_fd_; } function in class:testing::internal::InternalRunDeathTestFlag
  /external/googletest/googletest/include/gtest/internal/
gtest-death-test-internal.h 251 int write_fd() const { return write_fd_; } function in class:testing::internal::InternalRunDeathTestFlag
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-death-test-internal.h 251 int write_fd() const { return write_fd_; } function in class:testing::internal::InternalRunDeathTestFlag
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-death-test-internal.h 238 int write_fd() const { return write_fd_; } function in class:testing::internal::InternalRunDeathTestFlag
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-death-test-internal.h 251 int write_fd() const { return write_fd_; } function in class:testing::internal::InternalRunDeathTestFlag
  /external/protobuf/gtest/include/gtest/internal/
gtest-death-test-internal.h 207 int write_fd() const { return write_fd_; } function in class:testing::internal::InternalRunDeathTestFlag
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-death-test-internal.h 240 int write_fd() const { return write_fd_; } function in class:testing::internal::InternalRunDeathTestFlag
  /external/v8/testing/gtest/include/gtest/internal/
gtest-death-test-internal.h 251 int write_fd() const { return write_fd_; } function in class:testing::internal::InternalRunDeathTestFlag
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-death-test-internal.h 251 int write_fd() const { return write_fd_; } function in class:testing::internal::InternalRunDeathTestFlag
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-death-test-internal.h 251 int write_fd() const { return write_fd_; } function in class:testing::internal::InternalRunDeathTestFlag
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/internal/
gtest-death-test-internal.h 251 int write_fd() const { return write_fd_; } function in class:testing::internal::InternalRunDeathTestFlag
  /system/extras/simpleperf/
cmd_record_test.cpp 465 int write_fd = pipefd[1]; local
469 exit(RunRecordCmd({"--start_profiling_fd", std::to_string(write_fd)}) ? 0 : 1);
472 close(write_fd);
  /bionic/tests/
gtest_main.cpp 284 android::base::unique_fd write_fd; local
285 if (!android::base::Pipe(&read_fd, &write_fd)) {
293 posix_spawn_file_actions_adddup2(&fa, write_fd, 1);
294 posix_spawn_file_actions_adddup2(&fa, write_fd, 2);
295 posix_spawn_file_actions_addclose(&fa, write_fd);
304 write_fd.reset();
    [all...]
  /external/android-clat/
clatd.c 329 * write_fd - file descriptor to write translated packet to
332 void read_packet(int read_fd, int write_fd, int to_ipv6) {
367 translate_packet(write_fd, to_ipv6, packet, readlen);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_tempfile.py 138 read_fd, write_fd = os.pipe()
144 os.write(write_fd, next(self.r).encode("ascii"))
145 os.close(write_fd)
160 os.close(write_fd)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_tempfile.py 138 read_fd, write_fd = os.pipe()
144 os.write(write_fd, next(self.r).encode("ascii"))
145 os.close(write_fd)
160 os.close(write_fd)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tempfile.py 138 read_fd, write_fd = os.pipe()
144 os.write(write_fd, next(self.r).encode("ascii"))
145 os.close(write_fd)
160 os.close(write_fd)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tempfile.py 138 read_fd, write_fd = os.pipe()
144 os.write(write_fd, next(self.r).encode("ascii"))
145 os.close(write_fd)
160 os.close(write_fd)

Completed in 1005 milliseconds

12 3