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

1 2 3 4 5 6

  /external/curl/src/
tool_main.h 39 #ifndef STDERR_FILENO
40 # define STDERR_FILENO fileno(stderr)
  /external/minijail/
testrunner.cc 22 init_logging(LOG_TO_FD, STDERR_FILENO, LOG_INFO);
parse_seccomp_policy.cc 14 init_logging(LOG_TO_FD, STDERR_FILENO, LOG_INFO);
  /external/tensorflow/tensorflow/core/platform/
stacktrace_handler.cc 47 (void)write(STDERR_FILENO, begin_msg, strlen(begin_msg));
55 backtrace_symbols_fd(trace, buffer_size, STDERR_FILENO);
58 (void)write(STDERR_FILENO, end_msg, strlen(end_msg));
80 (void)write(STDERR_FILENO, buf, strlen(buf));
90 (void)write(STDERR_FILENO, stacktrace.c_str(), stacktrace.length());
118 (void)write(STDERR_FILENO, buf, strlen(buf));
125 (void)write(STDERR_FILENO, buf, strlen(buf));
stacktrace_handler_test.cc 45 dup2(test_pipe[1], STDERR_FILENO);
  /art/libartbase/base/
logging.cc 129 TEMP_FAILURE_RETRY(write(STDERR_FILENO, program_name, strlen(program_name)));
130 TEMP_FAILURE_RETRY(write(STDERR_FILENO, " ", 1));
131 TEMP_FAILURE_RETRY(write(STDERR_FILENO, &kLogCharacters[static_cast<size_t>(log_severity)], 1));
132 TEMP_FAILURE_RETRY(write(STDERR_FILENO, " ", 1));
134 TEMP_FAILURE_RETRY(write(STDERR_FILENO, file, strlen(file)));
137 TEMP_FAILURE_RETRY(write(STDERR_FILENO, "] ", 2));
138 TEMP_FAILURE_RETRY(write(STDERR_FILENO, message, strlen(message)));
139 TEMP_FAILURE_RETRY(write(STDERR_FILENO, "\n", 1));
  /external/curl/tests/libtest/
lib556.c 34 #ifndef STDERR_FILENO
35 #define STDERR_FILENO 2
  /bionic/libc/upstream-openbsd/lib/libc/gen/
daemon.c 59 (void)dup2(fd, STDERR_FILENO);
  /external/compiler-rt/test/asan/TestCases/Posix/
closed-fds.cc 22 close(STDERR_FILENO);
  /frameworks/compile/mclinker/lib/Support/
raw_ostream.cpp 27 #ifndef STDERR_FILENO
28 #define STDERR_FILENO 2
100 static raw_fd_ostream S(STDERR_FILENO, false, true);
  /external/honggfuzz/libcommon/
log.c 48 static int log_fd = STDERR_FILENO;
55 log_fd = fcntl(STDERR_FILENO, F_DUPFD_CLOEXEC, 0);
57 log_fd = STDERR_FILENO;
75 log_fd = STDERR_FILENO;
  /external/syslinux/com32/include/
unistd.h 38 #define STDERR_FILENO 2
  /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);
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer_unittest.cc 97 int save_err = dup(STDERR_FILENO);
99 ASSERT_NE(-1, dup2(err_fd, STDERR_FILENO));
104 dup2(save_err, STDERR_FILENO);
  /external/libbrillo/brillo/
process_unittest.cc 187 int saved_stderr = dup(STDERR_FILENO);
188 close(STDERR_FILENO);
190 dup2(saved_stderr, STDERR_FILENO);
203 process_.RedirectUsingPipe(STDERR_FILENO, false);
204 EXPECT_EQ(-1, process_.GetPipe(STDERR_FILENO));
206 int pipe_fd = process_.GetPipe(STDERR_FILENO);
216 int saved_stderr = dup(STDERR_FILENO);
217 close(STDERR_FILENO);
220 process_.RedirectUsingPipe(STDERR_FILENO, false);
223 dup2(saved_stderr, STDERR_FILENO);
    [all...]
  /system/core/base/
test_utils.cpp 142 old_stderr_ = dup(STDERR_FILENO);
144 CHECK_NE(-1, dup2(fd(), STDERR_FILENO));
148 CHECK_NE(-1, dup2(old_stderr_, STDERR_FILENO));
  /frameworks/base/cmds/statsd/src/external/
Perfetto.cpp 89 if (dup2(devNullFd, STDERR_FILENO) < 0) _exit(3);
92 if (i != STDIN_FILENO && i != STDOUT_FILENO && i != STDERR_FILENO) close(i);
  /bionic/tests/
sys_select_test.cpp 87 FD_SET(STDERR_FILENO, &w);
89 int max = STDERR_FILENO + 1;
101 ASSERT_TRUE(FD_ISSET(STDERR_FILENO, &w));
142 FD_SET(STDERR_FILENO, &w);
144 int max = STDERR_FILENO + 1;
156 ASSERT_TRUE(FD_ISSET(STDERR_FILENO, &w));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pty.py 17 STDERR_FILENO = 2
117 os.dup2(slave_fd, STDERR_FILENO)
118 if (slave_fd > STDERR_FILENO):
  /external/python/cpython2/Lib/
pty.py 17 STDERR_FILENO = 2
117 os.dup2(slave_fd, STDERR_FILENO)
118 if (slave_fd > STDERR_FILENO):
  /external/python/cpython3/Lib/
pty.py 17 STDERR_FILENO = 2
106 os.dup2(slave_fd, STDERR_FILENO)
107 if (slave_fd > STDERR_FILENO):
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pty.py 17 STDERR_FILENO = 2
117 os.dup2(slave_fd, STDERR_FILENO)
118 if (slave_fd > STDERR_FILENO):
  /prebuilts/gdb/linux-x86/lib/python2.7/
pty.py 17 STDERR_FILENO = 2
117 os.dup2(slave_fd, STDERR_FILENO)
118 if (slave_fd > 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):

Completed in 813 milliseconds

1 2 3 4 5 6