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

1 2 3 4 5 6 7 8 91011

  /external/curl/src/
tool_main.h 35 #ifndef STDOUT_FILENO
36 # define STDOUT_FILENO fileno(stdout)
  /external/valgrind/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);
  /external/curl/tests/libtest/
lib556.c 31 #ifndef STDOUT_FILENO
32 #define STDOUT_FILENO 1
91 if(!write(STDOUT_FILENO, buf, iolen))
  /external/protobuf/src/google/protobuf/testing/
zcgunzip.cc 50 #ifndef STDOUT_FILENO
51 #define STDOUT_FILENO 1
74 int err = write(STDOUT_FILENO, inptr, inlen);
zcgzip.cc 49 #ifndef STDOUT_FILENO
50 #define STDOUT_FILENO 1
61 FileOutputStream fout(STDOUT_FILENO);
  /bionic/libc/upstream-openbsd/lib/libc/gen/
daemon.c 58 (void)dup2(fd, STDOUT_FILENO);
  /external/compiler-rt/test/asan/TestCases/Posix/
closed-fds.cc 21 close(STDOUT_FILENO);
  /frameworks/compile/mclinker/lib/Support/
raw_ostream.cpp 24 #ifndef STDOUT_FILENO
25 #define STDOUT_FILENO 1
94 static raw_fd_ostream S(STDOUT_FILENO, false);
  /external/vboot_reference/host/lib/
host_signature.c 193 close(c_to_p[STDOUT_FILENO]);
196 if (write(p_to_c[STDOUT_FILENO], inbuf, size) != size) {
200 close(p_to_c[STDOUT_FILENO]); /* Send EOF to child (signer process). */
217 close (p_to_c[STDOUT_FILENO]);
230 if (STDOUT_FILENO != c_to_p[STDOUT_FILENO]) {
231 if (dup2(c_to_p[STDOUT_FILENO], STDOUT_FILENO) != STDOUT_FILENO) {
233 close(c_to_p[STDOUT_FILENO]);
    [all...]
  /external/compiler-rt/test/tsan/
fd_stdout_race.cc 21 write(STDOUT_FILENO, "a", 1);
  /external/syslinux/com32/include/
unistd.h 37 #define STDOUT_FILENO 1
  /frameworks/av/media/libeffects/factory/test/
DumpConfig.cpp 63 if (EffectDumpEffects(STDOUT_FILENO) != 0) {
  /external/gptfdisk/
sgdisk.cc 41 int stdout = dup(STDOUT_FILENO);
43 dup2(silence, STDOUT_FILENO);
  /external/linux-kselftest/tools/testing/selftests/size/
get_size.c 27 #define STDOUT_FILENO 1
31 return write(STDOUT_FILENO, s, __builtin_strlen(s));
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/
CanonRead.c 67 OutMode = IIO_GetOutputSize(STDOUT_FILENO, &MaxColumn, &MaxRow);
77 if (IIO_GetCursorPosition(STDOUT_FILENO, &This->InitialXY.Column, &This->InitialXY.Row) >= 0) {
85 fpOut = &gMD->fdarray[STDOUT_FILENO];
  /system/extras/simpleperf/
cmd_debug_unwind_test.cpp 49 old_stdout_ = dup(STDOUT_FILENO);
55 if (dup2(tmpfile_->fd, STDOUT_FILENO) == -1) {
64 dup2(old_stdout_, STDOUT_FILENO);
  /bionic/tests/
fortify_filecheck_diagnostics_test.cpp 331 pwrite64(STDOUT_FILENO, buf, 5, 0);
339 pwrite64(STDOUT_FILENO, buf, SIZE_MAX, 0);
347 pwrite64(STDOUT_FILENO, buf, SIZE_MAX, 0);
355 write(STDOUT_FILENO, buf, 5);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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)
150 os.write(STDOUT_FILENO, data)
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
1-3.c 75 #define WRITE(str) write(STDOUT_FILENO, str, sizeof(str) - 1)
  /external/protobuf/src/google/protobuf/compiler/
plugin.cc 44 #ifndef STDOUT_FILENO
45 #define STDOUT_FILENO 1
164 _setmode(STDOUT_FILENO, _O_BINARY);
178 if (!response.SerializeToFileDescriptor(STDOUT_FILENO)) {
  /external/python/cpython2/Lib/
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)
  /external/python/cpython3/Lib/
pty.py 16 STDOUT_FILENO = 1
105 os.dup2(slave_fd, STDOUT_FILENO)
111 tmp_fd = os.open(os.ttyname(STDOUT_FILENO), os.O_RDWR)
142 os.write(STDOUT_FILENO, data)

Completed in 5225 milliseconds

1 2 3 4 5 6 7 8 91011