Searched refs:STDOUT_FILENO (Results 1 - 25 of 109) sorted by relevance

12345

/external/valgrind/main/drd/tests/
H A Dlinuxthreads_det.c18 write(STDOUT_FILENO, "NPTL or non-Linux POSIX threads implementation detected.\n", 57);
22 write(STDOUT_FILENO, "Detected LinuxThreads as POSIX threads implementation.\n", 55);
H A Dpth_detached.c24 write(STDOUT_FILENO, ".", 1);
32 write(STDOUT_FILENO, ".", 1);
82 write(STDOUT_FILENO, "\n", 1);
H A Dpth_detached_sem.c28 write(STDOUT_FILENO, ".", 1);
36 write(STDOUT_FILENO, ".", 1);
84 write(STDOUT_FILENO, "\n", 1);
H A Dpth_barrier_thr_cr.c20 write(STDOUT_FILENO, ".", 1);
54 write(STDOUT_FILENO, "\n", 1);
H A Dsigalrm.c37 write(STDOUT_FILENO, msg, strlen(msg));
/external/openssh/openbsd-compat/
H A Ddaemon.c73 (void)dup2(fd, STDOUT_FILENO);
/external/bison/djgpp/
H A Dsubpipe.c40 #ifndef STDOUT_FILENO
41 # define STDOUT_FILENO 1 macro
129 old_stdout = dup(STDOUT_FILENO);
154 if (dup2(from_in_fd, STDOUT_FILENO) < 0)
162 fd[0] = STDOUT_FILENO;
214 if (dup2(to_in_fd, STDOUT_FILENO) < 0)
233 remove_tmp_file(STDOUT_FILENO, tmp_file_name[1]);
239 remove_tmp_file(STDOUT_FILENO, tmp_file_name[1]);
251 if (dup2(old_stdout, STDOUT_FILENO) < 0)
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dplugin.cc44 #ifndef STDOUT_FILENO
45 #define STDOUT_FILENO 1 macro
104 _setmode(STDOUT_FILENO, _O_BINARY);
153 if (!response.SerializeToFileDescriptor(STDOUT_FILENO)) {
/external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
H A Dzcgunzip.cc67 int err = write(STDOUT_FILENO, inptr, inlen);
H A Dzcgzip.cc54 FileOutputStream fout(STDOUT_FILENO);
/external/compiler-rt/lib/tsan/lit_tests/
H A Dfd_stdout_race.cc23 write(STDOUT_FILENO, "a", 1);
/external/protobuf/src/google/protobuf/compiler/
H A Dplugin.cc44 #ifndef STDOUT_FILENO
45 #define STDOUT_FILENO 1 macro
97 _setmode(STDOUT_FILENO, _O_BINARY);
142 if (!response.SerializeToFileDescriptor(STDOUT_FILENO)) {
/external/protobuf/src/google/protobuf/testing/
H A Dzcgunzip.cc67 int err = write(STDOUT_FILENO, inptr, inlen);
H A Dzcgzip.cc54 FileOutputStream fout(STDOUT_FILENO);
/external/bison/lib/
H A Dspawn-pipe.c99 * parent <- fd[0] <- STDOUT_FILENO <- child if pipe_stdout
157 orig_stdout = dup_safer_noinherit (STDOUT_FILENO);
167 && (!pipe_stdout || dup2 (ifd[1], STDOUT_FILENO) >= 0)
182 && (stdoutfd == STDOUT_FILENO
183 || (dup2 (stdoutfd, STDOUT_FILENO) >= 0
222 undup_safer_noinherit (orig_stdout, STDOUT_FILENO);
292 ifd[1], STDOUT_FILENO))
322 STDOUT_FILENO,
388 * parent <- fd[0] <- STDOUT_FILENO <- child
410 * parent <- fd[0] <- STDOUT_FILENO <
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_posix_libcdep.cc91 internal_close(STDOUT_FILENO);
94 internal_dup2(infd[1], STDOUT_FILENO);
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dnative_process_launcher_posix.cc52 fd_map.push_back(std::make_pair(*read_pipe_write_fd, STDOUT_FILENO));
/external/dropbear/
H A Dprogressmeter.c73 return (getpgrp() == tcgetpgrp(STDOUT_FILENO));
215 atomicio(vwrite, STDOUT_FILENO, buf, win_size - 1);
270 atomicio(vwrite, STDOUT_FILENO, "\n", 1);
284 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &winsize) != -1 &&
H A Dcli-session.c116 cli_ses.stdoutcopy = dup(STDOUT_FILENO);
117 cli_ses.stdoutflags = fcntl(STDOUT_FILENO, F_GETFL, 0);
H A Dcli-authpasswd.c77 if (dup2(p[1], STDOUT_FILENO) < 0) {
/external/openssh/
H A Dprogressmeter.c83 return (getpgrp() == tcgetpgrp(STDOUT_FILENO));
225 atomicio(vwrite, STDOUT_FILENO, buf, win_size - 1);
281 atomicio(vwrite, STDOUT_FILENO, "\n", 1);
296 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &winsize) != -1 &&
/external/chromium_org/testing/android/
H A Dnative_test_launcher.cc63 write(STDOUT_FILENO, kCrashedMarker, sizeof(kCrashedMarker));
177 dup2(STDOUT_FILENO, STDERR_FILENO);
/external/chromium_org/content/shell/android/browsertests_apk/
H A Dcontent_browser_tests_android.cc92 dup2(STDOUT_FILENO, STDERR_FILENO);
/external/llvm/lib/Support/
H A Draw_ostream.cpp51 #ifndef STDOUT_FILENO
52 # define STDOUT_FILENO 1 macro
437 FD = STDOUT_FILENO;
467 if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
657 static raw_fd_ostream S(STDOUT_FILENO, true);
/external/chromium_org/base/message_loop/
H A Dmessage_pump_libevent_unittest.cc79 STDOUT_FILENO, false, MessageLoopForIO::WATCH_READ, &watcher, &delegate),

Completed in 409 milliseconds

12345