HomeSort by relevance Sort by last modified time
    Searched refs:STDERR_FILENO (Results 51 - 75 of 144) sorted by null

1 23 4 5 6

  /bionic/benchmarks/tests/
interface_test.cpp 88 close(STDERR_FILENO);
90 ASSERT_NE(0, dup2(fds[1], STDERR_FILENO));
    [all...]
  /bionic/tests/
utils.h 207 dup2(fds[1], STDERR_FILENO);
208 if (fds[1] != STDOUT_FILENO && fds[1] != STDERR_FILENO) close(fds[1]);
  /frameworks/native/cmds/cmd/
cmd.cpp 226 STDERR_FILENO);
230 status_t err = IBinder::shellCommand(service, STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO, args,
  /system/update_engine/common/
subprocess.cc 55 if (HANDLE_EINTR(dup2(STDOUT_FILENO, STDERR_FILENO)) != STDERR_FILENO)
  /libcore/ojluni/src/main/native/
UNIXProcess_md.c 144 #ifndef STDERR_FILENO
145 #define STDERR_FILENO 2
156 #define FAIL_FILENO (STDERR_FILENO + 1)
739 (restartableDup2(STDOUT_FILENO, STDERR_FILENO) == -1))
743 STDERR_FILENO) == -1)
  /external/minijail/
minijail0_cli.c 726 init_logging(LOG_TO_FD, STDERR_FILENO, LOG_INFO);
731 minijail_preserve_fd(j, STDERR_FILENO, STDERR_FILENO)) {
  /device/generic/goldfish/wifi/createns/
createns.cpp 179 ::close(STDERR_FILENO);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
findfp.c 89 std(__SWR|__SNBF, STDERR_FILENO) /* stderr */
  /external/honggfuzz/
honggfuzz.c 54 UNUSED ssize_t sz = write(STDERR_FILENO, msg, strlen(msg));
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_posix_libcdep.cc 370 internal_close(STDERR_FILENO);
371 internal_dup2(stderr_fd, STDERR_FILENO);
sanitizer_symbolizer_posix_libcdep.cc 121 int saved_stderr = dup(STDERR_FILENO);
135 CHECK_GE(dup2(saved_stderr, STDERR_FILENO), 0);
  /external/mksh/src/
os2.c 183 if (!isatty(STDERR_FILENO))
184 setmode(STDERR_FILENO, O_BINARY);
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 327 // Write directly to STDERR_FILENO to avoid stdio code paths that may do
330 ignored = write(STDERR_FILENO, argv[0], strlen(argv[0]));
332 ignored = write(STDERR_FILENO, message, strlen(message));
  /external/deqp/framework/delibs/deutil/
deProcess.c 288 if (pipeErr[1] != STDERR_FILENO &&
289 dup2(pipeErr[1], STDERR_FILENO) != STDERR_FILENO)
  /external/libchrome/base/
logging.cc 20 // Windows doesn't define STDERR_FILENO. Define it here.
21 #define STDERR_FILENO 2
923 write(STDERR_FILENO, message + bytes_written,
934 rv = HANDLE_EINTR(write(STDERR_FILENO, "\n", 1));
  /external/libchrome/base/process/
launch_posix.cc 240 if (fd == STDIN_FILENO || fd == STDOUT_FILENO || fd == STDERR_FILENO)
270 if (fd == STDIN_FILENO || fd == STDOUT_FILENO || fd == STDERR_FILENO)
597 STDERR_FILENO, true));
  /external/llvm/lib/Support/
raw_ostream.cpp 55 #ifndef STDERR_FILENO
56 # define STDERR_FILENO 2
733 static raw_fd_ostream S(STDERR_FILENO, false, true);
  /external/mdnsresponder/mDNSPosix/
mDNSUNP.c 719 if (fd != STDERR_FILENO) (void)dup2(fd, STDERR_FILENO);
720 if (fd != STDIN_FILENO && fd != STDOUT_FILENO && fd != STDERR_FILENO)
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
raw_ostream.cpp 60 #ifndef STDERR_FILENO
61 # define STDERR_FILENO 2
712 static raw_fd_ostream S(STDERR_FILENO, false, true);
  /bionic/linker/
linker_main.cpp 218 async_safe_format_fd(STDERR_FILENO,
351 async_safe_format_fd(STDERR_FILENO,
  /external/jemalloc/src/
util.c 62 UNUSED long result = syscall(SYS_write, STDERR_FILENO, s, strlen(s));
64 UNUSED ssize_t result = write(STDERR_FILENO, s, strlen(s));
  /external/tensorflow/tensorflow/contrib/ffmpeg/default/
ffmpeg_lib.cc 386 close(STDERR_FILENO);
387 dup2(fd, STDERR_FILENO);
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd.c 314 fd != STDERR_FILENO)
579 (void)write(STDERR_FILENO, ".", 1);
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
EmuThunk.c 52 Return = write (STDERR_FILENO, (const void *)Buffer, (size_t)NumberOfBytes);
  /external/python/cpython2/Lib/plat-unixware7/
STROPTS.py 230 STDERR_FILENO = 2

Completed in 991 milliseconds

1 23 4 5 6