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

1 2 3 4 5 6

  /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.
  /bionic/libc/upstream-netbsd/libc/gen/
setjmperr.c 55 (void)write(STDERR_FILENO, ERRMSG, sizeof(ERRMSG) - 1);
psignal.c 78 (void)writev(STDERR_FILENO, iov, (int)((v - iov) + 1));
  /external/openssh/openbsd-compat/
daemon.c 74 (void)dup2(fd, STDERR_FILENO);
  /frameworks/compile/mclinker/lib/Support/
raw_ostream.cpp 24 #ifndef STDERR_FILENO
25 # define STDERR_FILENO 2
105 static mcld::raw_fd_ostream S(STDERR_FILENO, false, true);
FileHandle.cpp 33 #ifndef STDERR_FILENO
34 # define STDERR_FILENO 2
  /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);
dd.c 277 fd != STDERR_FILENO)
559 (void)write(STDERR_FILENO, ".", 1);
966 (void)write(STDERR_FILENO, "\n", 1);
977 (void)write(STDERR_FILENO, buf, strlen(buf));
982 (void)write(STDERR_FILENO, buf, strlen(buf));
988 (void)write(STDERR_FILENO, buf, strlen(buf));
994 (void)write(STDERR_FILENO, buf, strlen(buf));
1002 (void)write(STDERR_FILENO, buf, strlen(buf));
  /libcore/luni/src/main/java/java/io/
FileDescriptor.java 56 err.descriptor = STDERR_FILENO;
  /external/dropbear/
compat.c 183 (void)dup2(fd, STDERR_FILENO);
184 if (fd > STDERR_FILENO)
cli-session.c 118 cli_ses.stderrcopy = dup(STDERR_FILENO);
119 cli_ses.stderrflags = fcntl(STDERR_FILENO, F_GETFL, 0);
cli-chansession.c 350 channel->errfd = STDERR_FILENO;
351 setnonblocking(STDERR_FILENO);
  /bionic/libc/netbsd/resolv/
herror.c 119 writev(STDERR_FILENO, iov, (v - iov) + 1);
  /frameworks/native/libs/utils/
Static.cpp 85 static FdTextOutput gStderrTextOutput(STDERR_FILENO);
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-port.cc 97 uncaptured_fd_ = dup(STDERR_FILENO);
103 dup2(captured_fd, STDERR_FILENO);
115 dup2(uncaptured_fd_, STDERR_FILENO);
  /external/llvm/lib/Support/
raw_ostream.cpp 53 #ifndef STDERR_FILENO
54 # define STDERR_FILENO 2
484 if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
682 static raw_fd_ostream S(STDERR_FILENO, false, true);
  /external/dhcpcd/
bind.c 92 dup2(fd, STDERR_FILENO);
93 if (fd > STDERR_FILENO)
  /external/libppp/src/
main.c 315 * STDERR_FILENO are always open. These are closed before DoLoop(),
506 close(STDERR_FILENO);
516 close(STDERR_FILENO);
520 close(STDERR_FILENO);
  /bionic/libc/include/
unistd.h 43 #define STDERR_FILENO 2

Completed in 836 milliseconds

1 2 3 4 5 6