Home
last modified time | relevance | path

Searched refs:null_fd (Results 1 – 7 of 7) 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/honggfuzz/examples/libjpeg/
Dpersistent-jpeg.c20 int null_fd = -1; variable
42 null_fd = open("/dev/null", O_WRONLY); in LLVMFuzzerInitialize()
85 write(null_fd, buffer[0], row_stride); in LLVMFuzzerTestOneInput()
/external/honggfuzz/examples/libpng/
Dpersistent-png.c44 int null_fd = -1; variable
67 null_fd = open("/dev/null", O_WRONLY); in LLVMFuzzerInitialize()
112 write(null_fd, row_pointers[i], row_bytes); in LLVMFuzzerTestOneInput()
/external/autotest/scheduler/
Dluciferlib.py372 null_fd = os.open(os.devnull, os.O_RDONLY)
373 os.dup2(null_fd, 0)
374 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.cc391 base::ScopedFD null_fd(HANDLE_EINTR(open("/dev/null", O_RDONLY))); in LaunchProcess() local
392 if (!null_fd.is_valid()) { in LaunchProcess()
397 int new_fd = HANDLE_EINTR(dup2(null_fd.get(), STDIN_FILENO)); in LaunchProcess()