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

1 2

  /src/lib/libc/termios/
cfmakeraw.c 62 t->c_oflag &= ~OPOST;
  /src/usr.sbin/lpr/lpd/
modes.c 183 { "opost", OPOST, 0 },
184 { "-opost", 0, OPOST },
185 { "litout", 0, OPOST },
186 { "-litout", OPOST, 0 },
ttcompat.c 81 if (!ISSET(oflag, OPOST))
145 SET(oflag, OPOST);
147 CLR(oflag, OPOST);
152 SET(oflag, OPOST);
key.c 141 ip->t.c_oflag |= OPOST;
  /src/bin/stty/
modes.c 156 { "opost", OPOST },
166 { "litout", 0, OPOST },
167 { "-litout", OPOST, 0 },
key.c 160 ip->t.c_oflag |= OPOST;
print.c 131 put("-opost", OPOST, 1);
  /src/share/examples/rump/tipsy/
tipsy.c 121 tios.c_oflag &= ~OPOST;
131 tios.c_oflag &= ~OPOST;
  /src/sys/sys/
ttydefaults.h 49 #define TTYDEF_OFLAG (OPOST | ONLCR)
termios.h 111 #define OPOST 0x00000001U /* enable following output processing */
  /src/libexec/getty/
subr.c 289 SET(oflag, ONLCR|OPOST);
296 SET(oflag, OXTABS|OPOST);
307 CLR(oflag, OPOST);
372 oflag = OPOST|ONLCR|OXTABS;
470 SET(oflag, OPOST);
472 CLR(oflag, OPOST);
477 SET(oflag, OPOST);
  /src/sys/compat/common/
tty_43.c 321 if (!ISSET(oflag, OPOST))
422 SET(oflag, OPOST);
424 CLR(oflag, OPOST);
429 SET(oflag, OPOST);
490 SET(oflag, OPOST);
492 CLR(oflag, OPOST);
497 SET(oflag, OPOST);
  /src/libexec/telnetd/
sys_term.c 282 termbuf.c_oflag &= ~OPOST;
286 termbuf.c_oflag |= OPOST;
299 return(!(termbuf.c_oflag&OPOST));
  /src/usr.bin/telnet/
sys_bsd.c 369 tmp_tc.c_oflag &= ~OPOST;
373 tmp_tc.c_oflag |= OPOST;
  /src/usr.bin/tip/
tip.c 274 term.c_oflag &= ~OPOST;
572 cntrl.c_oflag &= ~OPOST;
  /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 212 bts->c_oflag |= cvtto_bsd_mask(lt->c_oflag, LINUX_OPOST, OPOST);
300 lt->c_oflag |= cvtto_linux_mask(bts->c_oflag, OPOST, LINUX_OPOST);
390 bts->c_oflag |= cvtto_bsd_mask(lts->c_oflag, LINUX_OPOST, OPOST);
488 lts->c_oflag |= cvtto_linux_mask(bts->c_oflag, OPOST, LINUX_OPOST);
  /src/sys/dev/sun/
sunms.c 164 tp->t_oflag &= ~OPOST;
sunkbd.c 145 tp->t_oflag &= ~OPOST;
  /src/usr.bin/tset/
set.c 118 mode.c_oflag |= (OPOST
  /src/lib/libedit/
tty.c 73 {"oflag:", (OPOST | ONLCR), ONLRET},
81 {"oflag:", (OPOST | ONLCR), ONLRET},
209 #ifdef OPOST
210 {"opost", OPOST, MD_OUT},
211 #endif /* OPOST */
  /src/lib/libcurses/
tty.c 146 screen->rawt.c_oflag &= ~OPOST;
  /src/sys/compat/sunos/
sunos_ioctl.c 150 r = ((l & 0x00000001) ? OPOST : 0);
273 r = ((l & OPOST) ? 0x00000001 : 0);
  /src/sys/compat/sunos32/
sunos32_ioctl.c 186 r = ((l & 0x00000001) ? OPOST : 0);
309 r = ((l & OPOST) ? 0x00000001 : 0);

Completed in 84 milliseconds

1 2