Symbol: STDOUT_FILENO
src/add-ons/tracker/zipomatic/ZipperThread.cpp
283
int oldOut = dup(STDOUT_FILENO);
src/add-ons/tracker/zipomatic/ZipperThread.cpp
301
dup2(outPipe[1], STDOUT_FILENO);
src/add-ons/tracker/zipomatic/ZipperThread.cpp
320
dup2(oldOut, STDOUT_FILENO);
src/apps/poorman/libhttpd/libhttpd.c
3432
if ( hc->conn_fd == STDIN_FILENO || hc->conn_fd == STDOUT_FILENO || hc->conn_fd == STDERR_FILENO )
src/apps/poorman/libhttpd/libhttpd.c
3526
if ( p[1] != STDOUT_FILENO )
src/apps/poorman/libhttpd/libhttpd.c
3527
(void) dup2( p[1], STDOUT_FILENO );
src/apps/poorman/libhttpd/libhttpd.c
3530
if ( p[1] != STDOUT_FILENO && p[1] != STDERR_FILENO )
src/apps/poorman/libhttpd/libhttpd.c
3536
if ( hc->conn_fd != STDOUT_FILENO )
src/apps/poorman/libhttpd/libhttpd.c
3537
(void) dup2( hc->conn_fd, STDOUT_FILENO );
src/apps/poorman/libhttpd/libhttpd.c
93
#ifndef STDOUT_FILENO
src/apps/remotedesktop/RemoteDesktop.cpp
156
close(STDOUT_FILENO);
src/apps/remotedesktop/RemoteDesktop.cpp
158
dup2(pipes[1], STDOUT_FILENO);
src/apps/softwareupdater/CheckManager.cpp
216
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &winSize) == 0
src/apps/softwareupdater/CheckManager.cpp
255
ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);
src/apps/softwareupdater/UpdateManager.cpp
279
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &winSize) == 0
src/apps/softwareupdater/UpdateManager.cpp
325
ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);
src/apps/text_search/Grepper.cpp
299
oldStdOut = dup(STDOUT_FILENO);
src/apps/text_search/Grepper.cpp
324
dup2(fds[1], STDOUT_FILENO);
src/apps/text_search/Grepper.cpp
351
close(STDOUT_FILENO);
src/bin/catattr.cpp
185
written = write(STDOUT_FILENO, buffer, bytesRead);
src/bin/debug/strace/strace.cpp
763
colorize = colorize && isatty(STDOUT_FILENO);
src/bin/debug/time_stats/timing_analysis.cpp
162
dup2(outFD, STDOUT_FILENO);
src/bin/debug/time_stats/timing_analysis.cpp
177
bool highlight = info.thread == child && isatty(STDOUT_FILENO);
src/bin/fwcontrol/fwdv.c
119
fd = STDOUT_FILENO;
src/bin/fwcontrol/fwdv.c
259
if (fd != STDOUT_FILENO)
src/bin/fwcontrol/fwmpegts.c
175
fd = STDOUT_FILENO;
src/bin/fwcontrol/fwmpegts.c
280
if (fd != STDOUT_FILENO)
src/bin/mountvolume.cpp
534
if (isatty(STDOUT_FILENO)) {
src/bin/mountvolume.cpp
536
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &size, sizeof(winsize)) == 0) {
src/bin/network/ftpd/ftpd.c
511
(void) dup2(fd, STDOUT_FILENO);
src/bin/network/ftpd/popen.c
132
if (pdes[1] != STDOUT_FILENO) {
src/bin/network/ftpd/popen.c
133
dup2(pdes[1], STDOUT_FILENO);
src/bin/network/ftpd/popen.c
136
dup2(STDOUT_FILENO, STDERR_FILENO); /* stderr too! */
src/bin/network/ping/ping.c
1023
(void)write(STDOUT_FILENO, &BBELL, 1);
src/bin/network/ping/ping.c
1118
(void)write(STDOUT_FILENO, &DOT[DOTidx++ % DOTlen], 1);
src/bin/network/ping/ping.c
1241
(void)write(STDOUT_FILENO, &BSPACE, 1);
src/bin/network/ping/ping.c
1251
(void)write(STDOUT_FILENO, &BBELL, 1);
src/bin/network/ping/ping6.c
1276
(void)write(STDOUT_FILENO, &BBELL, 1);
src/bin/network/ping/ping6.c
1453
(void)write(STDOUT_FILENO, &DOT[DOTidx++ % DOTlen], 1);
src/bin/network/ping/ping6.c
1651
(void)write(STDOUT_FILENO, &BSPACE, 1);
src/bin/network/ping/ping6.c
1654
(void)write(STDOUT_FILENO, &BBELL, 1);
src/bin/pkgman/PackageManager.cpp
178
fShowProgress = isatty(STDOUT_FILENO);
src/bin/pkgman/PackageManager.cpp
219
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &winSize) == 0)
src/kits/shared/CommandPipe.cpp
119
oldStdOut = dup(STDOUT_FILENO);
src/kits/shared/CommandPipe.cpp
121
close(STDOUT_FILENO);
src/kits/shared/CommandPipe.cpp
124
dup2(stdOutAndErr[1], STDOUT_FILENO);
src/kits/shared/CommandPipe.cpp
135
dup2(oldStdOut, STDOUT_FILENO);
src/kits/shared/CommandPipe.cpp
153
oldStdOut = dup(STDOUT_FILENO);
src/kits/shared/CommandPipe.cpp
155
close(STDOUT_FILENO);
src/kits/shared/CommandPipe.cpp
157
dup2(stdOut[1], STDOUT_FILENO);
src/kits/shared/CommandPipe.cpp
168
dup2(oldStdOut, STDOUT_FILENO);
src/libs/bsd/daemon.c
60
dup2(fd, STDOUT_FILENO);
src/servers/debug/DebugServer.cpp
1295
dup2(console, STDOUT_FILENO);
src/servers/launch/BaseJob.cpp
216
posix_spawn_file_actions_addclose(&fileActions, STDOUT_FILENO);
src/servers/launch/BaseJob.cpp
218
posix_spawn_file_actions_adddup2(&fileActions, pipes[1], STDOUT_FILENO);
src/servers/launch/LaunchDaemon.cpp
2160
open_stdio(STDOUT_FILENO, O_WRONLY);
src/servers/launch/LaunchDaemon.cpp
2161
dup2(STDOUT_FILENO, STDERR_FILENO);
src/servers/net/Services.cpp
451
posix_spawn_file_actions_adddup2(&fileActions, socket, STDOUT_FILENO);
src/system/libnetwork/netresolv/resolv/res_state.c
84
(void)write(STDOUT_FILENO, buf, (size_t)len);
src/system/libroot/posix/malloc/debug/guarded_heap.cpp
75
write(STDOUT_FILENO, buffer, strlen(buffer));
src/system/libroot/posix/unistd/terminal.c
36
char *name = ttyname(STDOUT_FILENO);
src/tests/add-ons/kernel/drivers/tty/posix_openpt_test.cpp
78
|| dup2(pts, STDOUT_FILENO) != STDOUT_FILENO
src/tests/add-ons/kernel/drivers/tty/posix_openpt_test.cpp
96
write(STDOUT_FILENO, buf, n);
src/tests/system/kernel/sigint_bug113_test.cpp
75
printf("fg process group: %d\n", (int)tcgetpgrp(STDOUT_FILENO));
src/tests/system/network/multicast/multicat.c
202
if (!dump_packets && out_fd != STDOUT_FILENO)
src/tests/system/network/multicast/multicat.c
83
int out_fd = STDOUT_FILENO;