Home
last modified time | relevance | path

Searched refs:VWERASE (Results 1 – 22 of 22) sorted by relevance

/dragonfly/contrib/tcsh-6/
H A Ded.term.h41 # if defined(VWERSE) && !defined(VWERASE)
42 # define VWERASE VWERSE macro
393 # ifdef VWERASE
394 # if NUMCC <= VWERASE
395 # undef VWERASE
472 #if (defined(hpux) && defined(VSUSP) && defined(VDSUSP) && defined(VWERASE) && defined(VLNEXT)) || …
H A Ded.term.c487 # if defined(VWERASE) || defined(TIOCGLTC)
817 # ifdef VWERASE in tty_getchar()
818 s[C_WERASE] = n->c_cc[VWERASE]; in tty_getchar()
957 # ifdef VWERASE in tty_setchar()
958 n->c_cc[VWERASE] = s[C_WERASE]; in tty_setchar()
/dragonfly/contrib/libedit/src/
H A Dtty.h52 # if defined(VWERSE) && !defined(VWERASE)
53 # define VWERASE VWERSE macro
338 # ifdef VWERASE
339 # if NUMCC <= VWERASE
340 # undef VWERASE
H A Dtty.c149 #ifdef VWERASE
150 {C_WERASE, VWERASE,
411 #if defined(VWERASE)
675 #ifdef VWERASE in tty__getcharindex()
677 return VWERASE; in tty__getcharindex()
771 #ifdef VWERASE in tty__getchar()
772 s[C_WERASE] = td->c_cc[VWERASE]; in tty__getchar()
853 #ifdef VWERASE in tty__setchar()
854 td->c_cc[VWERASE] = s[C_WERASE]; in tty__setchar()
/dragonfly/crypto/openssh/
H A Dttymodes.h85 #if defined(VWERASE)
86 TTYCHAR(VWERASE, 13)
/dragonfly/usr.bin/tset/
H A Dset.c72 #if defined(VWERASE) && defined(CWERASE) in reset_mode()
73 mode.c_cc[VWERASE] = CHK(mode.c_cc[VWERASE], CWERASE); in reset_mode()
/dragonfly/contrib/gdb-7/readline/
H A Drltty.c365 #ifdef VWERASE
366 _rl_tty_chars.t_werase = tiop->c_cc[VWERASE];
861 # if defined (VWERASE) && defined (TERMIOS_TTY_DRIVER)
862 SET_SPECIAL (VWERASE, rl_unix_word_rubout);
913 # if defined (VWERASE) && defined (TERMIOS_TTY_DRIVER)
/dragonfly/usr.bin/top/
H A Dscreen.c401 ch_werase = old_settings.c_cc[VWERASE]; in screen_init()
426 ch_werase = old_settings.c_cc[VWERASE]; in screen_init()
/dragonfly/libexec/getty/
H A Dinit.c76 { "we", M(VWERASE), NULL }, /* word erase */
H A Dsubr.c208 &tmode.c_cc[VWERASE], &tmode.c_cc[VLNEXT], 0
/dragonfly/usr.bin/window/
H A Dwwgets.c75 if (c == wwoldtty.ww_termios.c_cc[VWERASE]) in wwgets()
/dragonfly/usr.bin/telnet/
H A Dexterns.h382 # ifndef VWERASE
385 # define termWerasChar new_tc.c_cc[VWERASE]
H A Dterminal.c61 # ifndef VWERASE
H A Dsys_bsd.c245 #ifndef VWERASE in TerminalSaveState()
286 # ifdef VWERASE in tcval()
321 # ifndef VWERASE in TerminalDefaultChars()
/dragonfly/sys/sys/
H A D_termios.h51 #define VWERASE 4 /* ICANON together with IEXTEN */ macro
/dragonfly/bin/stty/
H A Dcchar.c74 { "werase", VWERASE, CWERASE },
/dragonfly/contrib/ncurses/progs/
H A Dreset_cmd.c227 #if defined(VWERASE) && defined(CWERASE) in reset_tty_settings()
228 reset_char(VWERASE, CWERASE); in reset_tty_settings()
/dragonfly/usr.bin/talk/
H A Dinit_disp.c126 my_win.werase = tio.c_cc[VWERASE]; in set_edit_chars()
/dragonfly/contrib/nvi2/cl/
H A Dcl_funcs.c479 #ifdef VWERASE in cl_keyval()
481 *dnep = (*chp = clp->orig.c_cc[VWERASE]) == _POSIX_VDISABLE; in cl_keyval()
/dragonfly/libexec/telnetd/
H A Dsys_term.c303 #ifdef VWERASE in spcset()
304 setval(VWERASE, SLC_VARIABLE); in spcset()
/dragonfly/contrib/less/
H A Dscreen.c494 #ifdef VWERASE in raw_mode()
495 werase_char = s.c_cc[VWERASE]; in raw_mode()
577 #ifdef VWERASE in raw_mode()
578 werase_char = s.c_cc[VWERASE]; in raw_mode()
/dragonfly/sys/kern/
H A Dtty.c609 if (CCEQ(cc[VWERASE], c) && ISSET(lflag, IEXTEN)) { in ttyinput()