HomeSort by relevance Sort by last modified time
    Searched refs:STDERR_FILENO (Results 1 - 25 of 193) sorted by null

1 2 3 4 5 6 7 8

  /external/bison/lib/
dup-safer.c 28 STDERR_FILENO. */
33 return fcntl (fd, F_DUPFD, STDERR_FILENO + 1);
dup-safer-flag.c 30 STDERR_FILENO. If FLAG contains O_CLOEXEC, behave like
37 STDERR_FILENO + 1);
fd-safer-flag.c 42 if (STDIN_FILENO <= fd && fd <= STDERR_FILENO)
fd-safer.c 39 if (STDIN_FILENO <= fd && fd <= STDERR_FILENO)
fopen-safer.c 39 if (0 <= fd && fd <= STDERR_FILENO)
spawn-pipe.c 159 orig_stderr = dup_safer_noinherit (STDERR_FILENO);
170 && (nulloutfd == STDERR_FILENO
171 || (dup2 (nulloutfd, STDERR_FILENO) >= 0
220 undup_safer_noinherit (orig_stderr, STDERR_FILENO);
308 STDERR_FILENO,
w32spawn.h 49 descriptor is none of STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO.
56 if (STDIN_FILENO <= fd && fd <= STDERR_FILENO)
69 result is none of STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO.
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.device/
ctor.pass.cpp 39 ec = close(STDERR_FILENO);
  /system/core/toolbox/
readtty.c 123 write(STDERR_FILENO, &current_char, 1);
154 write(STDERR_FILENO, &current_char, 1);
155 write(STDERR_FILENO, "\b", 1);
160 write(STDERR_FILENO, &current_char, 1);
173 write(STDERR_FILENO, &current_char, 1);
174 write(STDERR_FILENO, "\b", 1);
  /frameworks/compile/mclinker/lib/Support/
raw_ostream.cpp 28 #ifndef STDERR_FILENO
29 # define STDERR_FILENO 2
107 static mcld::raw_fd_ostream S(STDERR_FILENO, false, true);
  /system/core/toolbox/upstream-netbsd/bin/dd/
misc.c 76 (void)write(STDERR_FILENO, "\n", 1);
102 (void)write(STDERR_FILENO, "\n", 1);
114 (void)write(STDERR_FILENO, buf, strlen(buf));
119 (void)write(STDERR_FILENO, buf, strlen(buf));
125 (void)write(STDERR_FILENO, buf, strlen(buf));
131 (void)write(STDERR_FILENO, buf, strlen(buf));
139 (void)write(STDERR_FILENO, buf, strlen(buf));
177 (void)write(STDERR_FILENO, wbuf, cnt);
183 (void)write(STDERR_FILENO, wbuf, cnt);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
perror.c 61 (void)writev(STDERR_FILENO, iov, (v - iov) + 1);
  /bionic/tests/
sys_select_test.cpp 84 FD_SET(STDERR_FILENO, &w);
86 int max = STDERR_FILENO + 1;
130 FD_SET(STDERR_FILENO, &w);
132 int max = STDERR_FILENO + 1;
  /libcore/luni/src/main/java/java/io/
FileDescriptor.java 56 err.descriptor = STDERR_FILENO;
  /external/lldb/tools/debugserver/source/
PseudoTerminal.cpp 216 if (::dup2 (m_slave_fd, STDERR_FILENO) != STDERR_FILENO)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pty.py 17 STDERR_FILENO = 2
117 os.dup2(slave_fd, STDERR_FILENO)
118 if (slave_fd > STDERR_FILENO):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pty.py 17 STDERR_FILENO = 2
117 os.dup2(slave_fd, STDERR_FILENO)
118 if (slave_fd > STDERR_FILENO):
  /external/lldb/source/Utility/
PseudoTerminal.cpp 263 if (::dup2 (m_slave_fd, STDERR_FILENO) != STDERR_FILENO)
  /bionic/libc/dns/resolv/
herror.c 119 writev(STDERR_FILENO, iov, (v - iov) + 1);
  /bionic/libc/upstream-netbsd/lib/libc/gen/
psignal.c 78 (void)writev(STDERR_FILENO, iov, (int)((v - iov) + 1));
  /external/jemalloc/include/jemalloc/internal/
jemalloc_internal_decls.h 51 # define STDERR_FILENO 2
  /frameworks/native/libs/binder/
Static.cpp 67 static FdTextOutput gStderrTextOutput(STDERR_FILENO);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
unistd.h 25 #define STDERR_FILENO 2
  /frameworks/compile/mclinker/tools/mcld/lib/
PreferenceOptions.cpp 27 #ifndef STDERR_FILENO
28 # define STDERR_FILENO 2
  /external/chromium_org/content/shell/android/browsertests_apk/
content_browser_tests_android.cc 94 dup2(STDOUT_FILENO, STDERR_FILENO);

Completed in 712 milliseconds

1 2 3 4 5 6 7 8