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

1 2 3 4 5 6 7 8 910

  /external/valgrind/main/drd/tests/
linuxthreads_det.c 18 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);
pth_detached.c 24 write(STDOUT_FILENO, ".", 1);
32 write(STDOUT_FILENO, ".", 1);
82 write(STDOUT_FILENO, "\n", 1);
pth_detached_sem.c 28 write(STDOUT_FILENO, ".", 1);
36 write(STDOUT_FILENO, ".", 1);
84 write(STDOUT_FILENO, "\n", 1);
pth_barrier_thr_cr.c 20 write(STDOUT_FILENO, ".", 1);
54 write(STDOUT_FILENO, "\n", 1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.device/
ctor.pass.cpp 37 ec = close(STDOUT_FILENO);
  /frameworks/compile/mclinker/lib/Support/
raw_ostream.cpp 25 #ifndef STDOUT_FILENO
26 # define STDOUT_FILENO 1
101 static mcld::raw_fd_ostream S(STDOUT_FILENO, false);
  /external/bison/djgpp/
subpipe.c 40 #ifndef STDOUT_FILENO
41 # define STDOUT_FILENO 1
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/
plugin.cc 44 #ifndef STDOUT_FILENO
45 #define STDOUT_FILENO 1
104 _setmode(STDOUT_FILENO, _O_BINARY);
153 if (!response.SerializeToFileDescriptor(STDOUT_FILENO)) {
  /external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
zcgunzip.cc 67 int err = write(STDOUT_FILENO, inptr, inlen);
zcgzip.cc 54 FileOutputStream fout(STDOUT_FILENO);
  /external/compiler-rt/test/tsan/
fd_stdout_race.cc 23 write(STDOUT_FILENO, "a", 1);
  /external/protobuf/src/google/protobuf/compiler/
plugin.cc 44 #ifndef STDOUT_FILENO
45 #define STDOUT_FILENO 1
97 _setmode(STDOUT_FILENO, _O_BINARY);
142 if (!response.SerializeToFileDescriptor(STDOUT_FILENO)) {
  /external/protobuf/src/google/protobuf/testing/
zcgunzip.cc 67 int err = write(STDOUT_FILENO, inptr, inlen);
zcgzip.cc 54 FileOutputStream fout(STDOUT_FILENO);
  /external/bison/lib/
spawn-pipe.c 99 * 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 <- chil
    [all...]
  /libcore/luni/src/main/java/java/io/
FileDescriptor.java 55 out.descriptor = STDOUT_FILENO;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pty.py 16 STDOUT_FILENO = 1
116 os.dup2(slave_fd, STDOUT_FILENO)
122 tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR)
153 os.write(STDOUT_FILENO, data)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pty.py 16 STDOUT_FILENO = 1
116 os.dup2(slave_fd, STDOUT_FILENO)
122 tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR)
153 os.write(STDOUT_FILENO, data)
  /system/core/toolbox/
dmesg.c 46 while((ret = write(STDOUT_FILENO, p, n))) {
readtty.c 124 write(STDOUT_FILENO, &current_char, 1);
140 write(STDOUT_FILENO, rejectstring, strlen(rejectstring));
161 write(STDOUT_FILENO, &current_char, 1);
177 write(STDOUT_FILENO, buf, 1);
  /external/lldb/source/Utility/
SharingPtr.cpp 63 ::backtrace_symbols_fd (m_frames.data(), m_frames.size(), STDOUT_FILENO);
64 write (STDOUT_FILENO, "\n\n", 2);
PseudoTerminal.cpp 257 if (::dup2 (m_slave_fd, STDOUT_FILENO) != STDOUT_FILENO)
  /external/lldb/tools/debugserver/source/
PseudoTerminal.cpp 214 if (::dup2 (m_slave_fd, STDOUT_FILENO) != STDOUT_FILENO)
  /bionic/libc/upstream-netbsd/lib/libc/gen/
popen.c 140 if (pdes[1] != STDOUT_FILENO) {
141 (void)dup2(pdes[1], STDOUT_FILENO);
145 (void)dup2(STDOUT_FILENO, STDIN_FILENO);
  /frameworks/compile/mclinker/tools/mcld/lib/
PreferenceOptions.cpp 24 #ifndef STDOUT_FILENO
25 # define STDOUT_FILENO 1
153 llvm::sys::Process::FileDescriptorIsDisplayed(STDOUT_FILENO);

Completed in 1792 milliseconds

1 2 3 4 5 6 7 8 910