Symbol: ONLCR
bin/csh/file.c
150
tty.c_oflag &= ~ONLCR;
bin/stty/key.c
247
ip->t.c_oflag |= ONLCR;
bin/stty/key.c
250
ip->t.c_oflag &= ~ONLCR;
bin/stty/modes.c
157
{ "onlcr", ONLCR },
bin/stty/print.c
132
put("-onlcr", ONLCR, 1);
distrib/utils/more/screen.c
181
s.c_oflag |= (OPOST|ONLCR|TAB3);
games/backgammon/backgammon/main.c
127
noech.c_oflag &= ~(ONLCR | OXTABS);
games/backgammon/backgammon/main.c
128
raw.c_oflag &= ~(ONLCR | OXTABS);
games/backgammon/teachgammon/teach.c
79
noech.c_oflag &= ~(ONLCR | OXTABS);
games/backgammon/teachgammon/teach.c
80
raw.c_oflag &= ~(ONLCR | OXTABS);
games/warp/term.h
211
#define nl() ((bizarre=1),_tty.c_iflag |= ICRNL,_tty.c_oflag |= ONLCR,tcsetattr(_tty_ch, TCSANOW, &_tty))
games/warp/term.h
212
#define nonl() ((bizarre=1),_tty.c_iflag &=~ICRNL,_tty.c_oflag &=~ONLCR,tcsetattr(_tty_ch, TCSANOW, &_tty))
lib/libcurses/tty.c
129
screen->NONL = (screen->baset.c_oflag & ONLCR) == 0;
lib/libcurses/tty.c
445
_cursesi_screen->rawt.c_oflag |= ONLCR;
lib/libcurses/tty.c
447
_cursesi_screen->cbreakt.c_oflag |= ONLCR;
lib/libcurses/tty.c
449
_cursesi_screen->baset.c_oflag |= ONLCR;
lib/libcurses/tty.c
468
_cursesi_screen->rawt.c_oflag &= ~ONLCR;
lib/libcurses/tty.c
470
_cursesi_screen->cbreakt.c_oflag &= ~ONLCR;
lib/libcurses/tty.c
472
_cursesi_screen->baset.c_oflag &= ~ONLCR;
lib/libedit/tty.c
215
#ifdef ONLCR
lib/libedit/tty.c
216
{"onlcr", ONLCR, MD_OUT},
lib/libedit/tty.c
73
{"oflag:", (OPOST | ONLCR), ONLRET},
lib/libedit/tty.c
81
{"oflag:", (OPOST | ONLCR), ONLRET},
lib/libedit/tty.h
88
# ifndef ONLCR
libexec/comsat/comsat.c
262
cr = (ttybuf.c_oflag & ONLCR) && (ttybuf.c_oflag & OPOST) ?
libexec/getty/main.c
365
tmode.c_oflag |= ONLCR;
libexec/getty/subr.c
289
SET(oflag, ONLCR|OPOST);
libexec/getty/subr.c
292
CLR(oflag, ONLCR);
libexec/getty/subr.c
372
oflag = OPOST|ONLCR|OXTABS;
libexec/getty/subr.c
386
SET(oflag, ONLCR);
libexec/getty/subr.c
389
CLR(oflag, ONLCR);
sys/compat/common/tty_43.c
297
if (ISSET(iflag, ICRNL) || ISSET(oflag, ONLCR))
sys/compat/common/tty_43.c
371
SET(oflag, ONLCR);
sys/compat/common/tty_43.c
374
CLR(oflag, ONLCR);
sys/compat/linux/common/linux_termios.h
213
bts->c_oflag |= cvtto_bsd_mask(lt->c_oflag, LINUX_ONLCR, ONLCR);
sys/compat/linux/common/linux_termios.h
301
lt->c_oflag |= cvtto_linux_mask(bts->c_oflag, ONLCR, LINUX_ONLCR);
sys/compat/linux/common/linux_termios.h
391
bts->c_oflag |= cvtto_bsd_mask(lts->c_oflag, LINUX_ONLCR, ONLCR);
sys/compat/linux/common/linux_termios.h
489
lts->c_oflag |= cvtto_linux_mask(bts->c_oflag, ONLCR, LINUX_ONLCR);
sys/compat/sunos/sunos_ioctl.c
152
r |= ((l & 0x00000004) ? ONLCR : 0);
sys/compat/sunos/sunos_ioctl.c
275
r |= ((l & ONLCR) ? 0x00000004 : 0);
sys/compat/sunos32/sunos32_ioctl.c
188
r |= ((l & 0x00000004) ? ONLCR : 0);
sys/compat/sunos32/sunos32_ioctl.c
311
r |= ((l & ONLCR) ? 0x00000004 : 0);
sys/compat/ultrix/ultrix_ioctl.c
170
r |= ((l & 0x00000004) ? ONLCR : 0);
sys/compat/ultrix/ultrix_ioctl.c
303
r |= ((l & ONLCR) ? 0x00000004 : 0);
sys/dev/qbus/qd.c
378
#define OFLAG (OPOST|OXTABS|ONLCR)
sys/kern/tty.c
1004
if (ISSET(tp->t_oflag, ONLCR | ONLRET))
sys/kern/tty.c
977
if (c == '\n' && ISSET(tp->t_oflag, ONLCR)) {
sys/sys/ttydefaults.h
49
#define TTYDEF_OFLAG (OPOST | ONLCR)
tests/kernel/kqueue/read/t_ttypty.c
84
tio.c_oflag &= ~ONLCR;
usr.bin/telnet/sys_bsd.c
286
tmp_tc.c_oflag |= ONLCR;
usr.bin/telnet/sys_bsd.c
291
tmp_tc.c_oflag &= ~ONLCR;
usr.bin/tset/set.c
119
#ifdef ONLCR
usr.bin/tset/set.c
120
| ONLCR
usr.bin/tset/set.c
186
#ifdef ONLCR
usr.bin/tset/set.c
187
mode.c_oflag |= ONLCR;
usr.bin/tset/set.c
193
#ifdef ONLCR
usr.bin/tset/set.c
194
mode.c_oflag &= ~ONLCR;
usr.bin/tset/set.c
211
if (oldmode.c_oflag & (TAB3 | ONLCR | OCRNL | ONLRET)) {
usr.bin/tset/set.c
212
oldmode.c_oflag &= (TAB3 | ONLCR | OCRNL | ONLRET);
usr.sbin/lpr/lpd/key.c
196
ip->t.c_oflag |= ONLCR;
usr.sbin/lpr/lpd/key.c
199
ip->t.c_oflag &= ~ONLCR;
usr.sbin/lpr/lpd/modes.c
187
{ "onlcr", ONLCR, 0 },
usr.sbin/lpr/lpd/modes.c
188
{ "-onlcr", 0, ONLCR },
usr.sbin/lpr/lpd/ttcompat.c
176
CLR(oflag, ONLCR);
usr.sbin/lpr/lpd/ttcompat.c
205
SET(oflag, ONLCR);