Home
last modified time | relevance | path

Searched refs:null_fd (Results 1 – 9 of 9) sorted by relevance

/external/libusb/tests/
Dtestlib.c92 if (ctx->null_fd != INVALID_FD) { in cleanup_test_output()
93 close(ctx->null_fd); in cleanup_test_output()
94 ctx->null_fd = INVALID_FD; in cleanup_test_output()
128 ctx->null_fd = open(NULL_PATH, O_WRONLY); in setup_test_output()
129 if (ctx->null_fd < 0) { in setup_test_output()
130 ctx->null_fd = INVALID_FD; in setup_test_output()
135 if ((dup2(ctx->null_fd, STDOUT_FILENO) < 0) || in setup_test_output()
136 (dup2(ctx->null_fd, STDERR_FILENO) < 0)) { in setup_test_output()
186 ctx.null_fd = INVALID_FD; in libusb_testlib_run_tests()
Dlibusb_testlib.h59 int null_fd; member
/external/perfetto/src/traced/probes/ftrace/
Datrace_wrapper.cc63 int null_fd = open("/dev/null", O_RDWR); in ExecvAtrace() local
64 if (null_fd == -1) { in ExecvAtrace()
70 if ((dup2(null_fd, STDOUT_FILENO) == -1)) { in ExecvAtrace()
76 if ((dup2(null_fd, STDIN_FILENO) == -1)) { in ExecvAtrace()
/external/honggfuzz/examples/libjpeg/
Dpersistent-jpeg.c20 int null_fd = -1; variable
40 null_fd = open("/dev/null", O_WRONLY); in LLVMFuzzerInitialize()
87 write(null_fd, buffer[0], row_stride); in LLVMFuzzerTestOneInput()
/external/honggfuzz/examples/libpng/
Dpersistent-png.c43 int null_fd = -1; variable
64 null_fd = open("/dev/null", O_WRONLY); in LLVMFuzzerInitialize()
108 write(null_fd, row_pointers[i], row_bytes); in LLVMFuzzerTestOneInput()
/external/autotest/scheduler/
Dluciferlib.py449 null_fd = os.open(os.devnull, os.O_RDONLY)
450 os.dup2(null_fd, 0)
451 os.close(null_fd)
/external/autotest/client/site_tests/kernel_SchedBandwith/
Dkernel_SchedBandwith.py104 null_fd = open("/dev/null", "w")
106 task = subprocess.Popen(cmd, stdout=null_fd)
/external/libchrome/base/process/
Dlaunch_posix.cc394 base::ScopedFD null_fd(HANDLE_EINTR(open("/dev/null", O_RDONLY))); in LaunchProcess() local
395 if (!null_fd.is_valid()) { in LaunchProcess()
400 int new_fd = HANDLE_EINTR(dup2(null_fd.get(), STDIN_FILENO)); in LaunchProcess()
/external/perfetto/src/base/
Dunix_socket_unittest.cc208 ScopedFile null_fd(base::OpenFile("/dev/null", O_RDONLY)); in TEST_F() local
251 int buf_fd[2] = {null_fd.get(), zero_fd.get()}; in TEST_F()