HomeSort by relevance Sort by last modified time
    Searched refs:null_fd (Results 1 - 7 of 7) sorted by null

  /external/libusb/tests/
libusb_testlib.h 59 int null_fd; member in struct:__anon25928
testlib.c 92 if (ctx->null_fd != INVALID_FD) {
93 close(ctx->null_fd);
94 ctx->null_fd = INVALID_FD;
128 ctx->null_fd = open(NULL_PATH, O_WRONLY);
129 if (ctx->null_fd < 0) {
130 ctx->null_fd = INVALID_FD;
135 if ((dup2(ctx->null_fd, STDOUT_FILENO) < 0) ||
136 (dup2(ctx->null_fd, STDERR_FILENO) < 0)) {
186 ctx.null_fd = INVALID_FD;
  /external/honggfuzz/examples/libjpeg/
persistent-jpeg.c 20 int null_fd = -1; variable
42 null_fd = open("/dev/null", O_WRONLY);
85 write(null_fd, buffer[0], row_stride);
  /external/honggfuzz/examples/libpng/
persistent-png.c 44 int null_fd = -1; variable
67 null_fd = open("/dev/null", O_WRONLY);
112 write(null_fd, row_pointers[i], row_bytes);
  /external/autotest/scheduler/
luciferlib.py 372 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/
kernel_SchedBandwith.py 104 null_fd = open("/dev/null", "w")
106 task = subprocess.Popen(cmd, stdout=null_fd)
  /external/libchrome/base/process/
launch_posix.cc 391 base::ScopedFD null_fd(HANDLE_EINTR(open("/dev/null", O_RDONLY)));
392 if (!null_fd.is_valid()) {
397 int new_fd = HANDLE_EINTR(dup2(null_fd.get(), STDIN_FILENO));

Completed in 126 milliseconds