Searched refs:c_oflag (Results 1 - 25 of 74) sorted by relevance

123

/freebsd-11-stable/crypto/heimdal/appl/login/
H A Dstty_default.c89 termios.c_oflag |= (OPOST|ONLCR);
90 termios.c_oflag &= ~OXTABS;
/freebsd-11-stable/crypto/openssh/
H A Dttymodes.h158 TTYMODE(OPOST, c_oflag, 70)
160 TTYMODE(OLCUC, c_oflag, 71)
163 TTYMODE(ONLCR, c_oflag, 72)
166 TTYMODE(OCRNL, c_oflag, 73)
169 TTYMODE(ONOCR, c_oflag, 74)
172 TTYMODE(ONLRET, c_oflag, 75)
H A Dsshtty.c88 tio.c_oflag &= ~OPOST;
/freebsd-11-stable/usr.bin/tset/
H A Dset.c97 mode.c_oflag &= ~(0
121 mode.c_oflag |= (OPOST
197 mode.c_oflag |= OLCUC;
202 mode.c_oflag &= ~OLCUC;
217 mode.c_oflag |= ONLCR;
221 mode.c_oflag |= OXTABS;
224 mode.c_oflag &= ~ONLCR;
231 mode.c_oflag &= ~OXTABS;
247 if (oldmode.c_oflag & (TAB3 | ONLCR | OCRNL | ONLRET)) {
248 oldmode.c_oflag
[all...]
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_termios.c146 st->c_iflag, st->c_oflag, st->c_cflag, st->c_lflag));
160 bt->c_iflag, bt->c_oflag, bt->c_cflag, bt->c_lflag);
291 svr4_to_bsd_flag1(c_oflag,O,POST);
292 undefined_flag1(c_oflag,O,LCUC);
293 svr4_to_bsd_flag1(c_oflag,O,NLCR);
294 undefined_flag1(c_oflag,O,CRNL);
295 undefined_flag1(c_oflag,O,NOCR);
296 undefined_flag1(c_oflag,O,NLRET);
297 undefined_flag1(c_oflag,O,FILL);
298 undefined_flag1(c_oflag,
[all...]
H A Dsvr4_termios.h44 svr4_tcflag_t c_oflag; member in struct:svr4_termios
52 u_short c_oflag; member in struct:svr4_termio
/freebsd-11-stable/contrib/ncurses/include/
H A Dncurses_mingw.h61 tcflag_t c_oflag; /* output mode */ member in struct:termios
/freebsd-11-stable/bin/stty/
H A Dgfmt.c65 (u_long)tp->c_oflag);
109 tp->c_oflag = tmp;
H A Dkey.c148 ip->t.c_oflag |= OPOST;
219 ip->t.c_oflag |= ONLCR;
222 ip->t.c_oflag &= ~ONLCR;
268 ip->t.c_oflag = def.c_oflag;
H A Dmodes.c240 ip->t.c_oflag &= ~mp->unset;
241 ip->t.c_oflag |= mp->set;
/freebsd-11-stable/contrib/tcsh/
H A Ded.init.c201 extty.d_t.c_oflag &= ~ttylist[EX_IO][M_OUTPUT].t_clrmask;
202 extty.d_t.c_oflag |= ttylist[EX_IO][M_OUTPUT].t_setmask;
325 edtty.d_t.c_oflag &= ~ttylist[ED_IO][M_OUTPUT].t_clrmask;
326 edtty.d_t.c_oflag |= ttylist[ED_IO][M_OUTPUT].t_setmask;
452 extty.d_t.c_oflag = tstty.d_t.c_oflag;
453 extty.d_t.c_oflag &= ~ttylist[EX_IO][M_OUTPUT].t_clrmask;
454 extty.d_t.c_oflag |= ttylist[EX_IO][M_OUTPUT].t_setmask;
456 edtty.d_t.c_oflag = tstty.d_t.c_oflag;
[all...]
H A Dmi.termios.c192 termios_p->c_oflag = sgbuf.sg_flags & (CRMOD | XTABS);
193 if (termios_p->c_oflag)
195 termios_p->c_oflag |= OPOST;
325 if (termios_p->c_oflag & OPOST)
330 if (termios_p->c_oflag & XTABS)
/freebsd-11-stable/sys/i386/ibcs2/
H A Dibcs2_termios.h48 u_short c_oflag; member in struct:ibcs2_termio
57 ibcs2_tcflag_t c_oflag; member in struct:ibcs2_termios
/freebsd-11-stable/lib/libvgl/
H A Dkeyboard.c55 term.c_oflag = OPOST | ONLCR;
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/
H A DPlatform.h52 tcflag_t c_oflag; // output mode flags member in struct:termios
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnet/
H A Dsys_bsd.c358 tmp_tc.c_oflag |= ONLCR;
363 tmp_tc.c_oflag &= ~ONLCR;
408 tmp_tc.c_oflag |= OXTABS;
411 tmp_tc.c_oflag &= ~TABDLY;
412 tmp_tc.c_oflag |= TAB3;
416 tmp_tc.c_oflag &= ~OXTABS;
419 tmp_tc.c_oflag &= ~TABDLY;
444 tmp_tc.c_oflag &= ~OPOST;
446 tmp_tc.c_oflag |= OPOST;
450 tmp_tc.c_oflag |
[all...]
/freebsd-11-stable/contrib/telnet/telnet/
H A Dsys_bsd.c434 tmp_tc.c_oflag |= ONLCR;
443 tmp_tc.c_oflag &= ~ONLCR;
520 tmp_tc.c_oflag |= OXTABS;
523 tmp_tc.c_oflag &= ~TABDLY;
524 tmp_tc.c_oflag |= TAB3;
532 tmp_tc.c_oflag &= ~OXTABS;
535 tmp_tc.c_oflag &= ~TABDLY;
579 tmp_tc.c_oflag &= ~OPOST;
583 tmp_tc.c_oflag |= OPOST;
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnetd/
H A Dsys_term.c565 termbuf.c_oflag &= ~OPOST;
569 termbuf.c_oflag |= OPOST;
582 return(!(termbuf.c_oflag&OPOST));
590 return (termbuf.c_oflag & OXTABS);
593 return ((termbuf.c_oflag & TABDLY) == TAB3);
602 termbuf.c_oflag |= OXTABS;
605 termbuf.c_oflag &= ~TABDLY;
606 termbuf.c_oflag |= TAB3;
610 termbuf.c_oflag &= ~OXTABS;
613 termbuf.c_oflag
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/trace/
H A Dlib_tracebits.c170 if (tty->c_oflag & ALLOUT)
171 lookup_bits(buf, oflags, "oflags", tty->c_oflag);
/freebsd-11-stable/lib/libc/gen/
H A Dtermios.c172 t->c_oflag &= ~OPOST;
191 t->c_oflag = TTYDEF_OFLAG;
/freebsd-11-stable/usr.sbin/lpr/lpd/
H A Dmodes.c226 ip->c_oflag &= ~mp->unset;
227 ip->c_oflag |= mp->set;
/freebsd-11-stable/sys/kern/
H A Dtty_compat.c278 tcflag_t oflag = tp->t_termios.c_oflag;
338 tcflag_t oflag = t->c_oflag;
405 t->c_oflag = oflag;
415 tcflag_t oflag = t->c_oflag;
481 t->c_oflag = oflag;
/freebsd-11-stable/libexec/getty/
H A Dsubr.c249 tmode.c_oflag = O0;
258 tmode.c_oflag = O1;
267 tmode.c_oflag = O2;
274 oflag = omode.c_oflag;
392 tmode.c_oflag = oflag;
/freebsd-11-stable/contrib/telnet/telnetd/
H A Dsys_term.c565 termbuf.c_oflag &= ~OPOST;
569 termbuf.c_oflag |= OPOST;
590 return(!(termbuf.c_oflag&OPOST));
653 return (termbuf.c_oflag & OXTABS);
656 return ((termbuf.c_oflag & TABDLY) == TAB3);
672 termbuf.c_oflag |= OXTABS;
675 termbuf.c_oflag &= ~TABDLY;
676 termbuf.c_oflag |= TAB3;
680 termbuf.c_oflag &= ~OXTABS;
683 termbuf.c_oflag
[all...]
/freebsd-11-stable/contrib/ncurses/progs/
H A Dtset.c811 mode.c_oflag &= ~((unsigned) (0
850 mode.c_oflag |= (OPOST
953 mode.c_oflag |= OLCUC;
958 mode.c_oflag &= ~OLCUC;
975 mode.c_oflag |= ONLCR;
980 mode.c_oflag |= OXTABS;
987 mode.c_oflag &= ~((unsigned) ONLCR);
998 mode.c_oflag &= ~OXTABS;
1017 if (oldmode.c_oflag & (TAB3 | ONLCR | OCRNL | ONLRET)) {
1018 oldmode.c_oflag
[all...]

Completed in 311 milliseconds

123