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

1 2

  /src/lib/libc/termios/
cfmakeraw.c 61 t->c_iflag &= ~(IMAXBEL|IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
  /src/share/examples/rump/tipsy/
tipsy.c 120 tios.c_iflag &= ~(ISTRIP|ICRNL);
132 tios.c_iflag &= ~(INPCK|ICRNL);
  /src/sys/sys/
ttydefaults.h 48 #define TTYDEF_IFLAG (BRKINT | ICRNL | IMAXBEL | IXON | IXANY)
termios.h 98 #define ICRNL 0x00000100U /* map CR to NL (ala CRMOD) */
  /src/lib/libcurses/
tty.c 145 ICRNL | IXON);
444 _cursesi_screen->rawt.c_iflag |= ICRNL;
446 _cursesi_screen->cbreakt.c_iflag |= ICRNL;
448 _cursesi_screen->baset.c_iflag |= ICRNL;
467 _cursesi_screen->rawt.c_iflag &= ~ICRNL;
469 _cursesi_screen->cbreakt.c_iflag &= ~ICRNL;
471 _cursesi_screen->baset.c_iflag &= ~ICRNL;
  /src/usr.sbin/lpr/lpd/
modes.c 111 { "icrnl", ICRNL, 0 },
112 { "-icrnl", 0, ICRNL },
key.c 195 ip->t.c_iflag |= ICRNL;
198 ip->t.c_iflag &= ~ICRNL;
240 ip->t.c_iflag |= ICRNL;
ttcompat.c 175 CLR(iflag, ICRNL);
204 SET(iflag, ICRNL);
  /src/bin/stty/
key.c 246 ip->t.c_iflag |= ICRNL;
249 ip->t.c_iflag &= ~ICRNL;
287 ip->t.c_iflag |= ICRNL;
modes.c 104 { "icrnl", ICRNL },
print.c 115 put("-icrnl", ICRNL, 1);
  /src/usr.bin/tset/
set.c 88 mode.c_iflag |= (BRKINT | IGNPAR | ICRNL | IXON
189 mode.c_iflag |= ICRNL;
196 mode.c_iflag &= ~ICRNL;
  /src/usr.bin/telnet/
sys_bsd.c 288 tmp_tc.c_iflag |= ICRNL;
294 tmp_tc.c_iflag &= ~ICRNL;
323 tmp_tc.c_iflag &= ~ICRNL;
  /src/libexec/getty/
subr.c 288 SET(iflag, ICRNL);
291 CLR(iflag, ICRNL);
371 iflag = BRKINT|ICRNL|IMAXBEL|IXON|IXANY;
385 SET(iflag, ICRNL);
388 CLR(iflag, ICRNL);
main.c 364 tmode.c_iflag |= ICRNL;
  /src/usr.bin/resize/
resize.c 454 UIntClr(tio.c_iflag, (ICRNL | IUCLC));
462 UIntClr(tio.c_iflag, ICRNL);
  /src/sys/compat/common/
tty_43.c 297 if (ISSET(iflag, ICRNL) || ISSET(oflag, ONLCR))
370 SET(iflag, ICRNL);
373 CLR(iflag, ICRNL);
  /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/usr.bin/tip/
tip.c 273 term.c_iflag &= ~(INPCK|ICRNL);
571 cntrl.c_iflag &= ~(ISTRIP|ICRNL);
  /src/games/atc/
main.c 172 tty_new.c_iflag |= ICRNL;
  /src/sys/compat/linux/common/
linux_termios.h 205 bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_ICRNL, ICRNL);
293 lt->c_iflag |= cvtto_linux_mask(bts->c_iflag, ICRNL, LINUX_ICRNL);
383 bts->c_iflag |= cvtto_bsd_mask(lts->c_iflag, LINUX_ICRNL, ICRNL);
481 lts->c_iflag |= cvtto_linux_mask(bts->c_iflag, ICRNL, LINUX_ICRNL);
  /src/lib/libedit/
tty.c 72 {"iflag:", ICRNL, (INLCR | IGNCR)},
80 {"iflag:", (INLCR | ICRNL), IGNCR},
90 {"iflag:", 0, IXON | IXOFF | INLCR | ICRNL},
190 #ifdef ICRNL
191 {"icrnl", ICRNL, MD_INP},
192 #endif /* ICRNL */
  /src/libexec/telnetd/
sys_term.c 401 return (termbuf.c_iflag & ICRNL);
  /src/bin/sh/
miscbltin.c 109 n.c_iflag |= ICRNL;
  /src/sys/compat/sunos/
sunos_ioctl.c 141 r |= ((l & 0x00000100) ? ICRNL : 0);
264 r |= ((l & ICRNL) ? 0x00000100 : 0);

Completed in 22 milliseconds

1 2