Searched refs:VSTOP (Results 1 – 25 of 27) sorted by relevance
12
/freebsd/contrib/libedit/ |
H A D | tty.h | 333 # ifdef VSTOP 334 # if NUMCC <= VSTOP 335 # undef VSTOP
|
H A D | tty.c | 408 #if defined(VSTOP) 671 #ifdef VSTOP in tty__getcharindex() 673 return VSTOP; in tty__getcharindex() 768 #ifdef VSTOP in tty__getchar() 769 s[C_STOP] = td->c_cc[VSTOP]; in tty__getchar() 850 #ifdef VSTOP in tty__setchar() 851 td->c_cc[VSTOP] = s[C_STOP]; in tty__setchar()
|
/freebsd/contrib/tcsh/ |
H A D | ed.term.h | 384 # ifdef VSTOP 385 # if NUMCC <= VSTOP 386 # undef VSTOP
|
H A D | mi.termios.c | 274 termios_p->c_cc[VSTOP] = tcbuf.t_stopc; 383 tcbuf.t_stopc = termios_p->c_cc[VSTOP];
|
H A D | ed.term.c | 483 # if defined(VSTOP) || defined(TIOCGETC) 810 # ifdef VSTOP in tty_getchar() 811 s[C_STOP] = n->c_cc[VSTOP]; in tty_getchar() 946 # ifdef VSTOP in tty_setchar() 947 n->c_cc[VSTOP] = s[C_STOP]; in tty_setchar()
|
/freebsd/libexec/getty/ |
H A D | init.c | 67 { "xf", M(VSTOP), NULL }, /* XOFF (stop) char */
|
H A D | subr.c | 204 CV(VQUIT), CV(VSTART), CV(VSTOP),
|
/freebsd/crypto/heimdal/appl/telnet/telnet/ |
H A D | externs.h | 409 # ifndef VSTOP 412 # define termStopChar new_tc.c_cc[VSTOP]
|
H A D | terminal.c | 61 # ifndef VSTOP
|
H A D | sys_bsd.c | 208 #ifndef VSTOP in TerminalSaveState() 275 # ifndef VSTOP in TerminalDefaultChars()
|
/freebsd/contrib/telnet/telnet/ |
H A D | externs.h | 421 # ifndef VSTOP 424 # define termStopChar new_tc.c_cc[VSTOP]
|
H A D | terminal.c | 74 # ifndef VSTOP
|
H A D | sys_bsd.c | 259 #ifndef VSTOP in TerminalSaveState() 335 # ifndef VSTOP in TerminalDefaultChars()
|
/freebsd/sys/sys/ |
H A D | _termios.h | 64 #define VSTOP 13 /* IXON, IXOFF */ macro
|
/freebsd/bin/stty/ |
H A D | cchar.c | 65 { "stop", VSTOP, CSTOP },
|
/freebsd/crypto/openssh/ |
H A D | ttymodes.h | 75 TTYCHAR(VSTOP, 9)
|
/freebsd/sys/kern/ |
H A D | tty_compat.c | 134 cc[VSTOP] = tc->t_stopc; in ttsetcompat() 221 tc->t_stopc = cc[VSTOP]; in tty_ioctl_compat()
|
H A D | tty.c | 1815 tp->t_termios.c_cc[VSTOP] == CTRL('S') && in tty_generic_ioctl() 2049 tp->t_termios.c_cc[VSTOP] != _POSIX_VDISABLE) { in tty_hiwat_in_block() 2055 &tp->t_termios.c_cc[VSTOP], 1) == 0) in tty_hiwat_in_block()
|
H A D | tty_ttydisc.c | 1141 if (CMP_CC(VSTOP, c)) { in ttydisc_rint()
|
/freebsd/contrib/ncurses/progs/ |
H A D | reset_cmd.c | 305 #if defined(VSTOP) && defined(CSTOP) in reset_tty_settings() 306 reset_char(VSTOP, CSTOP); in reset_tty_settings()
|
/freebsd/lib/libc/gen/ |
H A D | termios.c | 264 c = term.c_cc[action == TCIOFF ? VSTOP : VSTART]; in tcflow()
|
/freebsd/crypto/heimdal/appl/telnet/telnetd/ |
H A D | telnetd.c | 1283 vstop = tsp->c_cc[VSTOP]; in readstream() 1293 vstop = tp->c_cc[VSTOP]; in readstream()
|
H A D | sys_term.c | 252 #ifdef VSTOP in spcset() 253 setval(VSTOP, SLC_VARIABLE); in spcset()
|
/freebsd/contrib/less/ |
H A D | screen.c | 512 #ifdef VSTOP in raw_mode() 513 s.c_cc[VSTOP] = 0; in raw_mode() 589 #ifdef VSTOP in raw_mode() 590 s.c_cc[VSTOP] = 0; in raw_mode()
|
/freebsd/sys/compat/linux/ |
H A D | linux_ioctl.c | 495 lios->c_cc[LINUX_VSTOP] = bios->c_cc[VSTOP]; in bsd_to_linux_termios() 613 bios->c_cc[VSTOP] = lios->c_cc[LINUX_VSTOP]; in linux_to_bsd_termios() 775 c = (args->arg == LINUX_TCIOFF) ? VSTOP : VSTART; in linux_ioctl_termio()
|
12