| /mirbsd/src/sys/compat/linux/ |
| D | linux_termios.c | 91 bts->c_iflag = 0; 92 bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_IGNBRK, IGNBRK); 93 bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_BRKINT, BRKINT); 94 bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_IGNPAR, IGNPAR); 95 bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_INPCK, INPCK); 96 bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_ISTRIP, ISTRIP); 97 bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_INLCR, INLCR); 98 bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_IGNCR, IGNCR); 99 bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_ICRNL, ICRNL); 100 bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_IXON, IXON); [all …]
|
| D | linux_termios.h | 57 unsigned short c_iflag; member 70 linux_tcflag_t c_iflag; member
|
| /mirbsd/src/usr.bin/ssh/ |
| D | ttymodes.h | 114 TTYMODE(IGNPAR, c_iflag, 30) 115 TTYMODE(PARMRK, c_iflag, 31) 116 TTYMODE(INPCK, c_iflag, 32) 117 TTYMODE(ISTRIP, c_iflag, 33) 118 TTYMODE(INLCR, c_iflag, 34) 119 TTYMODE(IGNCR, c_iflag, 35) 120 TTYMODE(ICRNL, c_iflag, 36) 122 TTYMODE(IUCLC, c_iflag, 37) 124 TTYMODE(IXON, c_iflag, 38) 125 TTYMODE(IXANY, c_iflag, 39) [all …]
|
| D | sshtty.c | 75 tio.c_iflag |= IGNPAR; in enter_raw_mode() 76 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF); in enter_raw_mode() 78 tio.c_iflag &= ~IUCLC; in enter_raw_mode()
|
| /mirbsd/src/lib/libocurses/ |
| D | tty.c | 96 rawt.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|INLCR|IGNCR|ICRNL|IXON); in gettmode() 109 rawt.c_iflag &= ~ISTRIP; in gettmode() 184 rawt.c_iflag |= ICRNL; in nl() 186 cbreakt.c_iflag |= ICRNL; in nl() 188 __baset.c_iflag |= ICRNL; in nl() 199 rawt.c_iflag &= ~ICRNL; in nonl() 201 cbreakt.c_iflag &= ~ICRNL; in nonl() 203 __baset.c_iflag &= ~ICRNL; in nonl()
|
| /mirbsd/src/usr.sbin/lpr/lpd/ |
| D | ttcompat.c | 69 tcflag_t iflag = tp->c_iflag; in sttygetoflags() 108 tcflag_t iflag = tp->c_iflag; in sttysetoflags() 165 tp->c_iflag = iflag; in sttysetoflags() 174 tcflag_t iflag = tp->c_iflag; in sttyclearflags() 197 tp->c_iflag = iflag; in sttyclearflags() 208 tcflag_t iflag = tp->c_iflag; in sttysetflags() 230 tp->c_iflag = iflag; in sttysetflags() 241 tcflag_t iflag = tp->c_iflag; in sttyclearlflags() 265 tp->c_iflag = iflag; in sttyclearlflags() 276 tcflag_t iflag = tp->c_iflag; in sttysetlflags() [all …]
|
| D | key.c | 139 ip->t.c_iflag |= BRKINT|IXON|IMAXBEL; in f_cbreak() 164 ip->t.c_iflag &= ~IXANY; in f_dec() 194 ip->t.c_iflag |= ICRNL; in f_nl() 197 ip->t.c_iflag &= ~ICRNL; in f_nl() 238 ip->t.c_iflag = TTYDEF_IFLAG; in f_sane() 239 ip->t.c_iflag |= ICRNL; in f_sane()
|
| D | modes.c | 225 ip->t.c_iflag &= ~mp->unset; in msearch() 226 ip->t.c_iflag |= mp->set; in msearch()
|
| /mirbsd/src/bin/stty/ |
| D | key.c | 155 ip->t.c_iflag |= BRKINT|IXON|IMAXBEL; in f_cbreak() 180 ip->t.c_iflag &= ~IXANY; in f_dec() 226 ip->t.c_iflag &= ~IUCLC; in f_lcase() 230 ip->t.c_iflag |= IUCLC; in f_lcase() 242 ip->t.c_iflag |= ICRNL; in f_nl() 245 ip->t.c_iflag &= ~ICRNL; in f_nl() 286 ip->t.c_iflag = TTYDEF_IFLAG; in f_sane() 287 ip->t.c_iflag |= ICRNL; in f_sane()
|
| D | gfmt.c | 65 tp->c_cflag, tp->c_iflag, tp->c_lflag, tp->c_oflag); in gprint() 95 tp->c_iflag = tmp; in gread()
|
| D | modes.c | 226 ip->t.c_iflag &= ~mp->unset; in msearch() 227 ip->t.c_iflag |= mp->set; in msearch()
|
| /mirbsd/src/lib/libncurses/src/ncurses/tinfo/ |
| D | lib_raw.c | 95 buf.c_iflag &= ~(COOKED_INPUT); in NCURSES_EXPORT() 127 buf.c_iflag &= ~ICRNL; in cbreak() 189 buf.c_iflag |= COOKED_INPUT; in noraw() 219 buf.c_iflag |= ICRNL; in nocbreak()
|
| /mirbsd/src/lib/libedit/ |
| D | tty.c | 486 el->el_tty.t_ex.c_iflag &= ~el->el_tty.t_t[EX_IO][MD_INP].t_clrmask; in tty_setup() 487 el->el_tty.t_ex.c_iflag |= el->el_tty.t_t[EX_IO][MD_INP].t_setmask; in tty_setup() 533 el->el_tty.t_ed.c_iflag &= ~el->el_tty.t_t[ED_IO][MD_INP].t_clrmask; in tty_setup() 534 el->el_tty.t_ed.c_iflag |= el->el_tty.t_t[ED_IO][MD_INP].t_setmask; in tty_setup() 971 if ((el->el_tty.t_ts.c_iflag != el->el_tty.t_ex.c_iflag) && in tty_rawmode() 972 (el->el_tty.t_ts.c_iflag != el->el_tty.t_ed.c_iflag)) { in tty_rawmode() 973 el->el_tty.t_ex.c_iflag = in tty_rawmode() 974 el->el_tty.t_ts.c_iflag; in tty_rawmode() 975 el->el_tty.t_ex.c_iflag &= in tty_rawmode() 977 el->el_tty.t_ex.c_iflag |= in tty_rawmode() [all …]
|
| /mirbsd/src/usr.bin/telnet/ |
| D | sys_bsd.c | 432 tmp_tc.c_iflag |= ICRNL; 442 tmp_tc.c_iflag &= ~ICRNL; 452 tmp_tc.c_iflag &= ~(IXOFF|IXON); /* Leave the IXANY bit alone */ 455 tmp_tc.c_iflag |= IXOFF|IXON; /* Leave the IXANY bit alone */ 457 tmp_tc.c_iflag |= IXOFF|IXON|IXANY; 459 tmp_tc.c_iflag |= IXOFF|IXON; 460 tmp_tc.c_iflag &= ~IXANY; 499 tmp_tc.c_iflag &= ~ICRNL; 571 tmp_tc.c_iflag &= ~ISTRIP; 573 tmp_tc.c_iflag |= ISTRIP;
|
| /mirbsd/src/usr.bin/vi/cl/ |
| D | cl_screen.c | 336 if (clp->orig.c_iflag & IXON) 337 clp->vi_enter.c_iflag |= IXON; 338 if (clp->orig.c_iflag & IXOFF) 339 clp->vi_enter.c_iflag |= IXOFF; 483 clp->ex_enter.c_iflag |= ICRNL;
|
| /mirbsd/src/libexec/getty/ |
| D | subr.c | 208 tmode.c_iflag = I0; in setflags() 217 tmode.c_iflag = I1; in setflags() 226 tmode.c_iflag = I2; in setflags() 234 iflag = omode.c_iflag; in setflags() 348 tmode.c_iflag = iflag; in setflags() 484 tmode.c_iflag = iflag; in compatflags()
|
| D | main.c | 303 tmode.c_iflag |= ICRNL; in main() 307 tmode.c_iflag |= IUCLC; in main() 312 tmode.c_iflag &= ~IUCLC; in main()
|
| /mirbsd/src/lib/libncurses/src/ncurses/base/ |
| D | lib_newterm.c | 78 buf.c_iflag &= ~(ICRNL | INLCR | IGNCR); in _nc_initscr() 160 !(cur_term->Ottyb.c_iflag & ISTRIP)); in newterm()
|
| /mirbsd/src/lib/libncurses/src/progs/ |
| D | tset.c | 749 mode.c_iflag &= ~(IGNBRK | PARMRK | INPCK | ISTRIP | INLCR | IGNCR in reset_mode() 758 mode.c_iflag |= (BRKINT | IGNPAR | ICRNL | IXON in reset_mode() 881 mode.c_iflag |= IUCLC; in set_conversions() 886 mode.c_iflag &= ~IUCLC; in set_conversions() 890 mode.c_iflag &= ~(PARMRK | INPCK); in set_conversions() 906 mode.c_iflag |= ICRNL; in set_conversions() 918 mode.c_iflag &= ~ICRNL; in set_conversions()
|
| /mirbsd/src/usr.bin/tip/ |
| D | cmds.c | 835 rmtty.c_iflag |= IXOFF; 836 term.c_iflag |= IXOFF; 838 rmtty.c_iflag &= ~IXOFF; 839 term.c_iflag &= ~IXOFF; 856 rmtty.c_iflag |= CRTSCTS; 858 rmtty.c_iflag &= ~CRTSCTS;
|
| D | tip.c | 219 term.c_iflag &= ~(INPCK|ICRNL); 551 cntrl.c_iflag &= ~(ISTRIP|ICRNL); 557 cntrl.c_iflag |= IXOFF;
|
| /mirbsd/src/lib/libncurses/src/ncurses/trace/ |
| D | lib_tracebits.c | 146 if (tty->c_iflag & ALLIN) in _nc_trace_ttymode() 147 lookup_bits(buf, iflags, "iflags", tty->c_iflag); in _nc_trace_ttymode()
|
| /mirbsd/src/sys/compat/common/ |
| D | tty_43.c | 327 register tcflag_t iflag = t->c_iflag; 415 t->c_iflag = iflag; 427 register tcflag_t iflag = t->c_iflag; 492 t->c_iflag = iflag;
|
| /mirbsd/src/lib/libc/termios/ |
| D | cfmakeraw.c | 40 t->c_iflag &= ~(IMAXBEL|IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON); in cfmakeraw()
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | ser-unix.c | 232 (int) state->termios.c_iflag, in hardwire_print_tty_state() 250 state->termio.c_iflag, state->termio.c_oflag); in hardwire_print_tty_state() 384 state.termios.c_iflag = 0; in hardwire_raw() 394 state.termio.c_iflag = 0; in hardwire_raw()
|