HomeSort by: relevance | last modified time | path
    Searched refs:ONLCR (Results 1 - 25 of 30) sorted by relevancy

1 2

  /src/usr.bin/tset/
set.c 119 #ifdef ONLCR
120 | ONLCR
186 #ifdef ONLCR
187 mode.c_oflag |= ONLCR;
193 #ifdef ONLCR
194 mode.c_oflag &= ~ONLCR;
211 if (oldmode.c_oflag & (TAB3 | ONLCR | OCRNL | ONLRET)) {
212 oldmode.c_oflag &= (TAB3 | ONLCR | OCRNL | ONLRET);
  /src/games/backgammon/teachgammon/
teach.c 79 noech.c_oflag &= ~(ONLCR | OXTABS);
80 raw.c_oflag &= ~(ONLCR | OXTABS);
  /src/sys/sys/
ttydefaults.h 49 #define TTYDEF_OFLAG (OPOST | ONLCR)
termios.h 113 #define ONLCR 0x00000002U /* map NL to CR-NL (ala CRMOD) */
  /src/lib/libcurses/
tty.c 129 screen->NONL = (screen->baset.c_oflag & ONLCR) == 0;
445 _cursesi_screen->rawt.c_oflag |= ONLCR;
447 _cursesi_screen->cbreakt.c_oflag |= ONLCR;
449 _cursesi_screen->baset.c_oflag |= ONLCR;
468 _cursesi_screen->rawt.c_oflag &= ~ONLCR;
470 _cursesi_screen->cbreakt.c_oflag &= ~ONLCR;
472 _cursesi_screen->baset.c_oflag &= ~ONLCR;
  /src/usr.sbin/lpr/lpd/
modes.c 187 { "onlcr", ONLCR, 0 },
188 { "-onlcr", 0, ONLCR },
key.c 196 ip->t.c_oflag |= ONLCR;
199 ip->t.c_oflag &= ~ONLCR;
ttcompat.c 176 CLR(oflag, ONLCR);
205 SET(oflag, ONLCR);
  /src/bin/stty/
key.c 247 ip->t.c_oflag |= ONLCR;
250 ip->t.c_oflag &= ~ONLCR;
modes.c 157 { "onlcr", ONLCR },
print.c 132 put("-onlcr", ONLCR, 1);
  /src/lib/libedit/
tty.h 88 # ifndef ONLCR
89 # define ONLCR 0
90 # endif /* ONLCR */
tty.c 73 {"oflag:", (OPOST | ONLCR), ONLRET},
81 {"oflag:", (OPOST | ONLCR), ONLRET},
215 #ifdef ONLCR
216 {"onlcr", ONLCR, MD_OUT},
217 #endif /* ONLCR */
  /src/games/backgammon/backgammon/
main.c 127 noech.c_oflag &= ~(ONLCR | OXTABS);
128 raw.c_oflag &= ~(ONLCR | OXTABS);
  /src/libexec/getty/
subr.c 289 SET(oflag, ONLCR|OPOST);
292 CLR(oflag, ONLCR);
372 oflag = OPOST|ONLCR|OXTABS;
386 SET(oflag, ONLCR);
389 CLR(oflag, ONLCR);
main.c 365 tmode.c_oflag |= ONLCR;
  /src/tests/kernel/kqueue/read/
t_ttypty.c 82 /* switch ONLCR off, to not get confused by newline translation */
84 tio.c_oflag &= ~ONLCR;
  /src/usr.bin/telnet/
sys_bsd.c 286 tmp_tc.c_oflag |= ONLCR;
291 tmp_tc.c_oflag &= ~ONLCR;
  /src/sys/compat/common/
tty_43.c 297 if (ISSET(iflag, ICRNL) || ISSET(oflag, ONLCR))
371 SET(oflag, ONLCR);
374 CLR(oflag, ONLCR);
  /src/games/warp/
term.h 211 #define nl() ((bizarre=1),_tty.c_iflag |= ICRNL,_tty.c_oflag |= ONLCR,tcsetattr(_tty_ch, TCSANOW, &_tty))
212 #define nonl() ((bizarre=1),_tty.c_iflag &=~ICRNL,_tty.c_oflag &=~ONLCR,tcsetattr(_tty_ch, TCSANOW, &_tty))
  /src/distrib/utils/more/
screen.c 181 s.c_oflag |= (OPOST|ONLCR|TAB3);
  /src/libexec/comsat/
comsat.c 262 cr = (ttybuf.c_oflag & ONLCR) && (ttybuf.c_oflag & OPOST) ?
  /src/sys/compat/linux/common/
linux_termios.h 213 bts->c_oflag |= cvtto_bsd_mask(lt->c_oflag, LINUX_ONLCR, ONLCR);
301 lt->c_oflag |= cvtto_linux_mask(bts->c_oflag, ONLCR, LINUX_ONLCR);
391 bts->c_oflag |= cvtto_bsd_mask(lts->c_oflag, LINUX_ONLCR, ONLCR);
489 lts->c_oflag |= cvtto_linux_mask(bts->c_oflag, ONLCR, LINUX_ONLCR);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_symbolizer_posix_libcdep.cc 220 termflags.c_oflag &= ~ONLCR;
  /src/sys/compat/sunos/
sunos_ioctl.c 152 r |= ((l & 0x00000004) ? ONLCR : 0);
275 r |= ((l & ONLCR) ? 0x00000004 : 0);

Completed in 26 milliseconds

1 2