Symbol: STDOUT
usr.bin/top/screen.c
328
if (ioctl(STDOUT, TIOCGETP, &old_settings) == -1)
usr.bin/top/screen.c
334
if (ioctl(STDOUT, TCGETA, &old_settings) == -1)
usr.bin/top/screen.c
340
if (tcgetattr(STDOUT, &old_settings) == -1)
usr.bin/top/screen.c
355
if (ioctl(STDOUT, TIOCGETP, &old_settings) != -1)
usr.bin/top/screen.c
363
(void) ioctl(STDOUT, TIOCSETP, &new_settings);
usr.bin/top/screen.c
372
(void) ioctl(STDOUT, TIOCLGET, &old_lword);
usr.bin/top/screen.c
376
(void) ioctl(STDOUT, TIOCLSET, &new_lword);
usr.bin/top/screen.c
386
if (ioctl(STDOUT, TCGETA, &old_settings) != -1)
usr.bin/top/screen.c
396
(void) ioctl(STDOUT, TCSETA, &new_settings);
usr.bin/top/screen.c
411
if (tcgetattr(STDOUT, &old_settings) != -1)
usr.bin/top/screen.c
421
(void) tcsetattr(STDOUT, TCSADRAIN, &new_settings);
usr.bin/top/screen.c
460
(void) ioctl(STDOUT, TIOCSETP, &old_settings);
usr.bin/top/screen.c
462
(void) ioctl(STDOUT, TIOCLSET, &old_lword);
usr.bin/top/screen.c
466
(void) ioctl(STDOUT, TCSETA, &old_settings);
usr.bin/top/screen.c
469
(void) tcsetattr(STDOUT, TCSADRAIN, &old_settings);
usr.bin/top/screen.c
482
(void) ioctl(STDOUT, TIOCSETP, &new_settings);
usr.bin/top/screen.c
484
(void) ioctl(STDOUT, TIOCLSET, &new_lword);
usr.bin/top/screen.c
488
(void) ioctl(STDOUT, TCSETA, &new_settings);
usr.bin/top/screen.c
491
(void) tcsetattr(STDOUT, TCSADRAIN, &new_settings);
usr.sbin/cron/cron/do_command.c
244
close(STDOUT); dup2(stdout_pipe[WRITE_PIPE], STDOUT);
usr.sbin/cron/cron/do_command.c
245
close(STDERR); dup2(STDOUT, STDERR);
usr.sbin/cron/lib/compat.c
118
close(STDOUT); open(_PATH_DEVNULL, 1);