Searched defs:STDERR_FILENO (Results 1 - 7 of 7) sorted by path

/external/bison/lib/
H A Ddup-safer.c29 #ifndef STDERR_FILENO
30 # define STDERR_FILENO 2 macro
34 STDERR_FILENO. */
40 return fcntl (fd, F_DUPFD, STDERR_FILENO + 1);
H A Dfd-safer.c33 #ifndef STDERR_FILENO
34 # define STDERR_FILENO 2 macro
49 if (STDIN_FILENO <= fd && fd <= STDERR_FILENO)
H A Dfopen-safer.c30 #ifndef STDERR_FILENO
31 # define STDERR_FILENO 2 macro
45 if (0 <= fd && fd <= STDERR_FILENO)
/external/chromium/base/
H A Dlogging.cc14 // Windows doesn't define STDERR_FILENO. Define it here.
15 #define STDERR_FILENO 2 macro
799 write(STDERR_FILENO, message + bytes_written,
810 rv = HANDLE_EINTR(write(STDERR_FILENO, "\n", 1));
/external/llvm/lib/Support/
H A Draw_ostream.cpp53 #ifndef STDERR_FILENO
54 # define STDERR_FILENO 2 macro
478 if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
676 static raw_fd_ostream S(STDERR_FILENO, false, true);
/external/okhttp/src/main/java/libcore/io/
H A DOsConstants.java312 public static final int STDERR_FILENO = placeholder(); field in class:OsConstants
/external/openssh/
H A Ddefines.h118 #ifndef STDERR_FILENO
119 # define STDERR_FILENO 2 macro

Completed in 213 milliseconds