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

  /external/honggfuzz/examples/libjpeg/
persistent-jpeg.c 20 int null_fd = -1; variable
40 null_fd = open("/dev/null", O_WRONLY);
87 write(null_fd, buffer[0], row_stride);
  /device/generic/goldfish-opengl/android-emu/android/utils/
debug.c 112 int null_fd, out_fd, err_fd; local
118 null_fd = _open( "NUL", _O_WRONLY );
119 _dup2(null_fd, out_fd);
120 _dup2(null_fd, err_fd);
121 close(null_fd);
144 int null_fd, out_fd, err_fd; local
150 null_fd = open( "/dev/null", O_WRONLY );
151 dup2(null_fd, out_fd);
152 dup2(null_fd, err_fd);
153 close(null_fd);
    [all...]
  /external/libusb/tests/
libusb_testlib.h 59 int null_fd; member in struct:__anon29642
  /external/perfetto/src/traced/probes/ftrace/
atrace_wrapper.cc 63 int null_fd = open("/dev/null", O_RDWR); local
64 if (null_fd == -1) {
70 if ((dup2(null_fd, STDOUT_FILENO) == -1)) {
76 if ((dup2(null_fd, STDIN_FILENO) == -1)) {
  /external/honggfuzz/examples/libpng/
persistent-png.c 43 int null_fd = -1; variable
64 null_fd = open("/dev/null", O_WRONLY);
108 write(null_fd, row_pointers[i], row_bytes);

Completed in 4126 milliseconds