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

1 2

  /src/external/bsd/tmux/dist/compat/
cfmakeraw.c 28 tio->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
  /src/lib/libc/termios/
cfmakeraw.c 61 t->c_iflag &= ~(IMAXBEL|IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
  /src/crypto/external/bsd/openssh/dist/
sshtty.c 81 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF);
ttymodes.h 109 TTYMODE(ISTRIP, c_iflag, 33)
  /src/usr.sbin/lpr/lpd/
modes.c 105 { "istrip", ISTRIP, 0 },
106 { "-istrip", 0, ISTRIP },
ttcompat.c 79 if (!ISSET(iflag, ISTRIP))
141 SET(iflag, ISTRIP);
143 CLR(iflag, ISTRIP);
151 SET(iflag, ISTRIP);
  /src/sys/compat/common/
tty_43.c 323 if (!ISSET(iflag, ISTRIP))
418 SET(iflag, ISTRIP);
420 CLR(iflag, ISTRIP);
428 SET(iflag, ISTRIP);
486 SET(iflag, ISTRIP);
488 CLR(iflag, ISTRIP);
496 SET(iflag, ISTRIP);
  /src/share/examples/rump/tipsy/
tipsy.c 120 tios.c_iflag &= ~(ISTRIP|ICRNL);
  /src/external/bsd/ppp/dist/pppd/
termios_linux.h 188 t->c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR |
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/
termios.d 74 ISTRIP
173 enum ISTRIP = 0x0000020; // 0000040
270 enum ISTRIP = 0x0000020;
367 enum ISTRIP = 0x0000020;
464 enum ISTRIP = 0x0000020;
561 enum ISTRIP = 0x0000020;
658 enum ISTRIP = 0x0000020;
753 enum ISTRIP = 0x000020;
  /src/libexec/getty/
subr.c 251 CLR(iflag, ISTRIP|INPCK|IGNPAR);
255 SET(iflag, ISTRIP);
466 SET(iflag, ISTRIP);
468 CLR(iflag, ISTRIP);
476 SET(iflag, ISTRIP);
  /src/libexec/telnetd/
sys_term.c 270 termbuf.c_iflag &= ~ISTRIP;
272 termbuf.c_iflag |= ISTRIP;
293 return(!(termbuf.c_iflag & ISTRIP));
  /src/bin/stty/
modes.c 101 { "istrip", ISTRIP },
print.c 114 put("-istrip", ISTRIP, 0);
  /src/sys/sys/
termios.h 95 #define ISTRIP 0x00000020U /* strip 8th bit off chars */
  /src/usr.bin/telnet/
sys_bsd.c 363 tmp_tc.c_iflag &= ~ISTRIP;
365 tmp_tc.c_iflag |= ISTRIP;
  /src/external/mit/libuv/dist/src/unix/
tty.c 252 tio->c_iflag &= ~(IMAXBEL | IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR |
322 tmp.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON);
  /src/sys/compat/linux/common/
linux_termios.h 202 bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_ISTRIP, ISTRIP);
290 lt->c_iflag |= cvtto_linux_mask(bts->c_iflag, ISTRIP, LINUX_ISTRIP);
380 bts->c_iflag |= cvtto_bsd_mask(lts->c_iflag, LINUX_ISTRIP, ISTRIP);
478 lts->c_iflag |= cvtto_linux_mask(bts->c_iflag, ISTRIP, LINUX_ISTRIP);
  /src/usr.bin/tset/
set.c 79 mode.c_iflag &= ~(IGNBRK | PARMRK | INPCK | ISTRIP | INLCR | IGNCR
  /src/lib/libcurses/
tty.c 158 screen->rawt.c_iflag &= ~ISTRIP;
  /src/usr.bin/tip/
tip.c 571 cntrl.c_iflag &= ~(ISTRIP|ICRNL);
  /src/external/gpl2/texinfo/dist/info/
terminal.c 722 ttybuff.c_iflag &= (~ISTRIP & ~INLCR & ~IGNCR & ~ICRNL & ~IXON);
  /src/sys/compat/sunos/
sunos_ioctl.c 138 r |= ((l & 0x00000020) ? ISTRIP : 0);
261 r |= ((l & ISTRIP) ? 0x00000020 : 0);
  /src/sys/compat/sunos32/
sunos32_ioctl.c 174 r |= ((l & 0x00000020) ? ISTRIP : 0);
297 r |= ((l & ISTRIP) ? 0x00000020 : 0);
  /src/sys/compat/ultrix/
ultrix_ioctl.c 156 r |= ((l & 0x00000020) ? ISTRIP : 0);
289 r |= ((l & ISTRIP) ? 0x00000020 : 0);

Completed in 57 milliseconds

1 2