Searched refs:c_cc (Results 1 - 25 of 89) sorted by relevance

1234

/freebsd-11-stable/libexec/getty/
H A Dinit.c58 { "er", &omode.c_cc[VERASE] }, /* erase character */
59 { "kl", &omode.c_cc[VKILL] }, /* kill character */
60 { "et", &omode.c_cc[VEOF] }, /* eof chatacter (eot) */
67 { "in", &omode.c_cc[VINTR] }, /* interrupt char */
68 { "qu", &omode.c_cc[VQUIT] }, /* quit char */
69 { "xn", &omode.c_cc[VSTART] }, /* XON (start) char */
70 { "xf", &omode.c_cc[VSTOP] }, /* XOFF (stop) char */
71 { "bk", &omode.c_cc[VEOL] }, /* brk char (alt \n) */
72 { "su", &omode.c_cc[VSUSP] }, /* suspend char */
73 { "ds", &omode.c_cc[VDSUS
[all...]
H A Dsubr.c210 &tmode.c_cc[VERASE], &tmode.c_cc[VKILL], &tmode.c_cc[VINTR],
211 &tmode.c_cc[VQUIT], &tmode.c_cc[VSTART], &tmode.c_cc[VSTOP],
212 &tmode.c_cc[VEOF], &tmode.c_cc[VEOL], &tmode.c_cc[VSUSP],
213 &tmode.c_cc[VDSUS
[all...]
/freebsd-11-stable/usr.bin/tset/
H A Dset.c59 mode.c_cc[VDISCARD] = CHK(mode.c_cc[VDISCARD], CDISCARD);
61 mode.c_cc[VEOF] = CHK(mode.c_cc[VEOF], CEOF);
62 mode.c_cc[VERASE] = CHK(mode.c_cc[VERASE], CERASE);
64 mode.c_cc[VFLUSH] = CHK(mode.c_cc[VFLUSH], CFLUSH);
66 mode.c_cc[VINTR] = CHK(mode.c_cc[VINT
[all...]
/freebsd-11-stable/crypto/heimdal/appl/login/
H A Dstty_default.c92 termios.c_cc[VINTR] = Ctl('C');
93 termios.c_cc[VERASE] = Ctl('H');
94 termios.c_cc[VKILL] = Ctl('U');
95 termios.c_cc[VEOF] = Ctl('D');
97 termios.c_cc[VSUSP] = Ctl('Z');
/freebsd-11-stable/sys/i386/ibcs2/
H A Dibcs2_ioctl.c175 bt->c_cc[VINTR] =
176 st->c_cc[IBCS2_VINTR] ? st->c_cc[IBCS2_VINTR] : _POSIX_VDISABLE;
177 bt->c_cc[VQUIT] =
178 st->c_cc[IBCS2_VQUIT] ? st->c_cc[IBCS2_VQUIT] : _POSIX_VDISABLE;
179 bt->c_cc[VERASE] =
180 st->c_cc[IBCS2_VERASE] ? st->c_cc[IBCS2_VERASE] : _POSIX_VDISABLE;
181 bt->c_cc[VKIL
[all...]
/freebsd-11-stable/contrib/tcsh/
H A Dmi.termios.c267 termios_p->c_cc[VEOF] = tcbuf.t_eofc;
268 termios_p->c_cc[VEOL] = tcbuf.t_brkc;
269 termios_p->c_cc[VERASE] = sgbuf.sg_erase;
270 termios_p->c_cc[VINTR] = tcbuf.t_intrc;
271 termios_p->c_cc[VKILL] = sgbuf.sg_kill;
272 termios_p->c_cc[VQUIT] = tcbuf.t_quitc;
273 termios_p->c_cc[VSTART] = tcbuf.t_startc;
274 termios_p->c_cc[VSTOP] = tcbuf.t_stopc;
275 termios_p->c_cc[VMIN] = 1;
276 termios_p->c_cc[VTIM
[all...]
H A Ded.term.c778 s[C_INTR] = n->c_cc[VINTR];
781 s[C_QUIT] = n->c_cc[VQUIT];
784 s[C_ERASE] = n->c_cc[VERASE];
787 s[C_KILL] = n->c_cc[VKILL];
790 s[C_EOF] = n->c_cc[VEOF];
793 s[C_EOL] = n->c_cc[VEOL];
796 s[C_EOL2] = n->c_cc[VEOL2];
799 s[C_SWTCH] = n->c_cc[VSWTCH];
802 s[C_DSWTCH] = n->c_cc[VDSWTCH];
805 s[C_ERASE2] = n->c_cc[VERASE
[all...]
H A Dtc.disc.c74 if (termiob.c_line != NTTYDISC || termiob.c_cc[VSWTCH] == 0) { /*}*/
77 if (termiob.c_cc[VSWTCH] == 0) {
79 termiob.c_cc[VSWTCH] = CSWTCH;
117 termiob.c_cc[VSWTCH] = '\0';
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnet/
H A Dexterns.h370 # define termEofChar new_tc.c_cc[VEOF]
371 # define termEraseChar new_tc.c_cc[VERASE]
372 # define termIntChar new_tc.c_cc[VINTR]
373 # define termKillChar new_tc.c_cc[VKILL]
374 # define termQuitChar new_tc.c_cc[VQUIT]
379 # define termSuspChar new_tc.c_cc[VSUSP]
387 # define termFlushChar new_tc.c_cc[VDISCARD]
392 # define termWerasChar new_tc.c_cc[VWERASE]
397 # define termRprntChar new_tc.c_cc[VREPRINT]
402 # define termLiteralNextChar new_tc.c_cc[VLNEX
[all...]
/freebsd-11-stable/contrib/libreadline/examples/
H A Dexcallback.c111 old_vtime = term.c_cc[VTIME];
113 term.c_cc[VTIME] = 1;
146 term.c_cc[VTIME] = old_vtime;
H A Drlptytest.c228 buf.c_cc[VMIN] = 1;
229 buf.c_cc[VTIME] = 0;
232 buf.c_cc[VLNEXT] = _POSIX_VDISABLE;
236 buf.c_cc[VDSUSP] = _POSIX_VDISABLE;
/freebsd-11-stable/contrib/telnet/telnet/
H A Dexterns.h382 # define termEofChar new_tc.c_cc[VEOF]
383 # define termEraseChar new_tc.c_cc[VERASE]
384 # define termIntChar new_tc.c_cc[VINTR]
385 # define termKillChar new_tc.c_cc[VKILL]
386 # define termQuitChar new_tc.c_cc[VQUIT]
391 # define termSuspChar new_tc.c_cc[VSUSP]
399 # define termFlushChar new_tc.c_cc[VDISCARD]
404 # define termWerasChar new_tc.c_cc[VWERASE]
409 # define termRprntChar new_tc.c_cc[VREPRINT]
414 # define termLiteralNextChar new_tc.c_cc[VLNEX
[all...]
/freebsd-11-stable/contrib/opie/libopie/
H A Dreadpass.c117 attr.c_cc[VMIN] = 1;
118 attr.c_cc[VTIME] = 0;
140 if (*(e++) == attr.c_cc[VERASE])
144 *e = attr.c_cc[VERASE];
166 if (*(e++) == attr.c_cc[VKILL])
170 *e = attr.c_cc[VKILL];
192 if (*(e++) == attr.c_cc[VEOF])
/freebsd-11-stable/lib/libedit/
H A Dtty.c621 * Return the index of the asked char in the c_cc array
736 s[C_INTR] = td->c_cc[VINTR];
739 s[C_QUIT] = td->c_cc[VQUIT];
742 s[C_ERASE] = td->c_cc[VERASE];
745 s[C_KILL] = td->c_cc[VKILL];
748 s[C_EOF] = td->c_cc[VEOF];
751 s[C_EOL] = td->c_cc[VEOL];
754 s[C_EOL2] = td->c_cc[VEOL2];
757 s[C_SWTCH] = td->c_cc[VSWTCH];
760 s[C_DSWTCH] = td->c_cc[VDSWTC
[all...]
/freebsd-11-stable/contrib/ncurses/include/
H A Dncurses_mingw.h65 cc_t c_cc[NCCS]; /* control characters */ member in struct:termios
/freebsd-11-stable/bin/stty/
H A Dcchar.c120 ip->t.c_cc[cp->sub] = _POSIX_VDISABLE;
132 ip->t.c_cc[cp->sub] = val;
134 ip->t.c_cc[cp->sub] = (arg[1] == '?') ? 0177 :
137 ip->t.c_cc[cp->sub] = arg[0];
/freebsd-11-stable/contrib/libreadline/
H A Drltty.c423 _rl_tty_chars.t_eof = tiop->c_cc[VEOF];
424 _rl_tty_chars.t_eol = tiop->c_cc[VEOL];
426 _rl_tty_chars.t_eol2 = tiop->c_cc[VEOL2];
428 _rl_tty_chars.t_erase = tiop->c_cc[VERASE];
430 _rl_tty_chars.t_werase = tiop->c_cc[VWERASE];
432 _rl_tty_chars.t_kill = tiop->c_cc[VKILL];
434 _rl_tty_chars.t_reprint = tiop->c_cc[VREPRINT];
436 _rl_tty_chars.t_intr = tiop->c_cc[VINTR];
437 _rl_tty_chars.t_quit = tiop->c_cc[VQUIT];
439 _rl_tty_chars.t_susp = tiop->c_cc[VSUS
[all...]
/freebsd-11-stable/contrib/ncurses/progs/
H A Dtset.c767 mode.c_cc[VDISCARD] = CHK(mode.c_cc[VDISCARD], CDISCARD);
769 mode.c_cc[VEOF] = CHK(mode.c_cc[VEOF], CEOF);
770 mode.c_cc[VERASE] = CHK(mode.c_cc[VERASE], CERASE);
772 mode.c_cc[VFLUSH] = CHK(mode.c_cc[VFLUSH], CFLUSH);
774 mode.c_cc[VINTR] = CHK(mode.c_cc[VINT
[all...]
/freebsd-11-stable/lib/libvgl/
H A Dkeyboard.c58 term.c_cc[VTIME] = 0;
59 term.c_cc[VMIN] = 0;
/freebsd-11-stable/crypto/openssh/
H A Dsshtty.c89 tio.c_cc[VMIN] = 1;
90 tio.c_cc[VTIME] = 0;
/freebsd-11-stable/contrib/top/
H A Dscreen.c284 new_settings.c_cc[VMIN] = 1;
285 new_settings.c_cc[VTIME] = 0;
289 ch_erase = old_settings.c_cc[VERASE];
290 ch_kill = old_settings.c_cc[VKILL];
308 new_settings.c_cc[VMIN] = 1;
309 new_settings.c_cc[VTIME] = 0;
313 ch_erase = old_settings.c_cc[VERASE];
314 ch_kill = old_settings.c_cc[VKILL];
/freebsd-11-stable/contrib/opie/
H A Dopielogin.c881 attr.c_cc[VEOF] = CEOF;
883 attr.c_cc[VEOF] = CONTROL('D');
888 attr.c_cc[VEOL] = CEOL;
890 attr.c_cc[VEOL] = CONTROL('J');
895 attr.c_cc[VERASE] = CERASE;
897 attr.c_cc[VERASE] = CONTROL('H');
902 attr.c_cc[VINTR] = CINTR;
904 attr.c_cc[VINTR] = CONTROL('C');
909 attr.c_cc[VKILL] = CKILL;
911 attr.c_cc[VKIL
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/unix/
H A Dkeyboard.c65 current_mode.c_cc[VMIN] = 1;
66 current_mode.c_cc[VTIME] = 0;
112 controlchars = keyboard->saved_mode.c_cc;
/freebsd-11-stable/lib/libc/gen/
H A Dtermios.c176 t->c_cc[VMIN] = 1;
177 t->c_cc[VTIME] = 0;
194 memcpy(&t->c_cc, ttydefchars, sizeof ttydefchars);
268 c = term.c_cc[action == TCIOFF ? VSTOP : VSTART];
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_kernel.c91 result = termp->Ottyb.c_cc[VERASE];
126 result = termp->Ottyb.c_cc[VKILL];

Completed in 217 milliseconds

1234