Home
last modified time | relevance | path

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

1234

/titanic_50/usr/src/ucbcmd/stty/
H A Dstty.c265 cb.c_cc[VMIN], cb.c_cc[VTIME]); in prmodes()
267 if (cb.c_cc[VINTR] != CINTR) in prmodes()
268 pit(cb.c_cc[VINTR], "intr", "; "); in prmodes()
269 if (cb.c_cc[VQUIT] != CQUIT) in prmodes()
270 pit(cb.c_cc[VQUIT], "quit", "; "); in prmodes()
271 if (cb.c_cc[VERASE] != CERASE) in prmodes()
272 pit(cb.c_cc[VERASE], "erase", "; "); in prmodes()
273 if (cb.c_cc[VKILL] != CKILL) in prmodes()
274 pit(cb.c_cc[VKILL], "kill", "; "); in prmodes()
275 if (cb.c_cc[VEOF] != CEOF) in prmodes()
[all …]
H A Dsttyparse.c77 cb->c_cc[VERASE] = gct(*++argv, term);
79 cb->c_cc[VINTR] = gct(*++argv, term);
81 cb->c_cc[VQUIT] = gct(*++argv, term);
83 cb->c_cc[VEOF] = gct(*++argv, term);
85 cb->c_cc[VMIN] = atoi(*++argv);
87 cb->c_cc[VEOL] = gct(*++argv, term);
89 cb->c_cc[VEOL] = gct(*++argv, term);
91 cb->c_cc[VEOL2] = gct(*++argv, term);
93 cb->c_cc[VTIME] = atoi(*++argv);
95 cb->c_cc[VKILL] = gct(*++argv, term);
[all …]
/titanic_50/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dcbreak.c56 PTERMIOS(_prog)->c_cc[VMIN] = 1; in cbreak()
57 PTERMIOS(_prog)->c_cc[VTIME] = 0; in cbreak()
72 PTERMIOS(_prog)->c_cc[VEOF] = PTERMIOS(_shell)->c_cc[VEOF]; in nocbreak()
73 PTERMIOS(_prog)->c_cc[VEOL] = PTERMIOS(_shell)->c_cc[VEOL]; in nocbreak()
88 PTERMIOS(_prog)->c_cc[VMIN] = 0; in halfdelay()
89 PTERMIOS(_prog)->c_cc[VTIME] = (tenths > 255) ? 255 : (cc_t)tenths; in halfdelay()
100 PTERMIOS(_prog)->c_cc[VMIN] = 1; in raw()
101 PTERMIOS(_prog)->c_cc[VTIME] = 0; in raw()
117 PTERMIOS(_prog)->c_cc[VEOF] = PTERMIOS(_shell)->c_cc[VEOF]; in noraw()
118 PTERMIOS(_prog)->c_cc[VEOL] = PTERMIOS(_shell)->c_cc[VEOL]; in noraw()
H A Dwgetch.c75 if ((read_termios.c_cc[VMIN] == 0) && in iqContainsFullLine()
76 (read_termios.c_cc[VTIME] != 0)) { in iqContainsFullLine()
82 if (PTERMIOS(_shell)->c_cc[VEOL] == ch) in iqContainsFullLine()
177 newstuff.c_cc[VMIN] = (cc_t) vmin; in __m_tty_override_mode()
178 newstuff.c_cc[VTIME] = (cc_t) vtime; in __m_tty_override_mode()
391 if (PTERMIOS(_shell)->c_cc[VERASE] != _POSIX_VDISABLE) in wgetch()
393 if (ch == PTERMIOS(_shell)->c_cc[VERASE]) { in wgetch()
H A Dkillchar.c62 ch = (char)PTERMIOS(_shell)->c_cc[VERASE]; in erasechar()
78 ch = (char)PTERMIOS(_shell)->c_cc[VKILL]; in killchar()
/titanic_50/usr/src/cmd/ttymon/
H A Dstty.c317 cb.c_cc[VMIN], cb.c_cc[VTIME]); in prmodes()
318 if (cb.c_cc[VINTR] != CINTR) in prmodes()
319 pit(cb.c_cc[VINTR], "intr", "; "); in prmodes()
320 if (cb.c_cc[VQUIT] != CQUIT) in prmodes()
321 pit(cb.c_cc[VQUIT], "quit", "; "); in prmodes()
322 if (cb.c_cc[VERASE] != CERASE) in prmodes()
323 pit(cb.c_cc[VERASE], "erase", "; "); in prmodes()
324 if (cb.c_cc[VKILL] != CKILL) in prmodes()
325 pit(cb.c_cc[VKILL], "kill", "; "); in prmodes()
326 if (cb.c_cc[VEOF] != CEOF) in prmodes()
[all …]
H A Dsttyparse.c84 cb->c_cc[VERASE] = gct(*++argv, term);
86 cb->c_cc[VINTR] = gct(*++argv, term);
88 cb->c_cc[VQUIT] = gct(*++argv, term);
90 cb->c_cc[VEOF] = gct(*++argv, term);
93 cb->c_cc[VMIN] = atoi(*++argv);
95 cb->c_cc[VMIN] = gct(*++argv, term);
97 cb->c_cc[VEOL] = gct(*++argv, term);
99 cb->c_cc[VEOL2] = gct(*++argv, term);
102 cb->c_cc[VTIME] = atoi(*++argv);
104 cb->c_cc[VTIME] = gct(*++argv, term);
[all …]
H A Dtmterm.c101 termios.c_cc[VEOF] = CEOF;
102 termios.c_cc[VEOL] = CNUL;
106 termios.c_cc[VMIN] = 1;
107 termios.c_cc[VTIME] = 0;
157 termio.c_cc[VEOF] = CEOF;
158 termio.c_cc[VEOL] = CNUL;
H A Dtmautobaud.c97 termio.c_cc[VMIN] = 5; in auto_termio()
98 termio.c_cc[VTIME] = 1; in auto_termio()
112 termios.c_cc[VMIN] = 5; in auto_termio()
113 termios.c_cc[VTIME] = 1; in auto_termio()
/titanic_50/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dcbreak.c55 cur_term->_prog.c_cc[VMIN] = 1; in cbreak()
56 cur_term->_prog.c_cc[VTIME] = 0; in cbreak()
74 cur_term->_prog.c_cc[VEOF] = cur_term->_shell.c_cc[VEOF]; in nocbreak()
75 cur_term->_prog.c_cc[VEOL] = cur_term->_shell.c_cc[VEOL]; in nocbreak()
95 cur_term->_prog.c_cc[VMIN] = 0;
96 cur_term->_prog.c_cc[VTIME] = tenths;
111 cur_term->_prog.c_cc[VMIN] = 1; in raw()
112 cur_term->_prog.c_cc[VTIME] = 0; in raw()
130 cur_term->_prog.c_cc[VEOF] = cur_term->_shell.c_cc[VEOF]; in noraw()
131 cur_term->_prog.c_cc[VEOL] = cur_term->_shell.c_cc[VEOL]; in noraw()
H A Dwgetch.c135 && (cur_term->_prog.c_cc[VMIN] != w->_vmin
136 || cur_term->_prog.c_cc[VTIME] != w->_vtime)) {
137 cur_term->_prog.c_cc[VMIN] = w->_vmin;
138 cur_term->_prog.c_cc[VTIME] = w->_vtime;
171 if (cur_term->_shell.c_cc[VERASE] != _POSIX_VDISABLE)
173 if (ch == cur_term->_shell.c_cc[VERASE])
201 cur_term->_prog.c_cc[VMIN] = 0;
202 cur_term->_prog.c_cc[VTIME] =
H A Dkillchar.c60 ch = cur_term->_shell.c_cc[VERASE]; in erasechar()
79 ch = cur_term->_shell.c_cc[VKILL]; in killchar()
/titanic_50/usr/src/cmd/bnu/
H A Dline.c138 ttbufs.c_cc[i] = ttbuf.c_cc[i];
189 ttbufs.c_cc[VEOF] = '\1';
212 ttbufs.c_cc[VMIN] = HEADERSIZE;
213 ttbufs.c_cc[VTIME] = 1;
222 ttbuf.c_cc[i] = ttbufs.c_cc[i];
278 tbufs.c_cc[i] = tbuf.c_cc[i];
313 if (tbufs.c_cc[VMIN] != packsize ||
314 tbufs.c_cc[VTIME] != vtime) {
315 tbufs.c_cc[VMIN] = packsize;
316 tbufs.c_cc[VTIME] = vtime;
[all …]
H A Dcu.c468 _Tv0s.c_cc[i] = _Tv0.c_cc[i];
503 _Tintr = _Tv0s.c_cc[VINTR] ? _Tv0s.c_cc[VINTR] : vdisable;
504 _Tquit = _Tv0s.c_cc[VQUIT] ? _Tv0s.c_cc[VQUIT] : vdisable;
505 _Terase = _Tv0s.c_cc[VERASE] ? _Tv0s.c_cc[VERASE] : vdisable;
506 _Tkill = _Tv0s.c_cc[VKILL] ? _Tv0s.c_cc[VKILL] : vdisable;
507 _Teol = _Tv0s.c_cc[VEOL] ? _Tv0s.c_cc[VEOL] : vdisable;
508 _Myeof = _Tv0s.c_cc[VEOF] ? _Tv0s.c_cc[VEOF] : '\04';
1076 if((ch=_Tv0s.c_cc[i]) != '\0')
1382 _Tv0.c_cc[i] = _Tv0s.c_cc[i]; in _mode()
1406 _Tv.c_cc[VEOF] = '\01'; in _mode()
[all …]
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dexterns.h354 #define termEofChar new_tc.c_cc[VEOF]
355 #define termEraseChar new_tc.c_cc[VERASE]
356 #define termIntChar new_tc.c_cc[VINTR]
357 #define termKillChar new_tc.c_cc[VKILL]
358 #define termQuitChar new_tc.c_cc[VQUIT]
360 #define termSuspChar new_tc.c_cc[VSUSP]
361 #define termFlushChar new_tc.c_cc[VDISCARD]
362 #define termWerasChar new_tc.c_cc[VWERASE]
363 #define termRprntChar new_tc.c_cc[VREPRINT]
364 #define termLiteralNextChar new_tc.c_cc[VLNEXT]
[all …]
H A Dsys_bsd.c246 (void) memcpy(new_tc.c_cc, old_tc.c_cc, sizeof (old_tc.c_cc)); in TerminalDefaultChars()
416 tmp_tc.c_cc[VMIN] = 1;
417 tmp_tc.c_cc[VTIME] = 0;
425 tmp_tc.c_cc[VLNEXT] = (cc_t)(_POSIX_VDISABLE);
496 tmp_tc.c_cc[VDSUSP] = (cc_t)(_POSIX_VDISABLE);
504 if ((tmp_tc.c_cc[VEOL] != esc)
506 (tmp_tc.c_cc[VEOL2] != esc)
508 if (tmp_tc.c_cc[VEOL] == (cc_t)(_POSIX_VDISABLE))
509 tmp_tc.c_cc[VEOL] = esc;
510 else if (tmp_tc.c_cc[VEOL2] == (cc_t)(_POSIX_VDISABLE))
[all …]
/titanic_50/usr/src/uts/common/io/
H A Dttcompat.c1166 FROM_COMPAT_CHAR(termiosp->c_cc[VERASE], csp->t_erase); in from_compat()
1167 FROM_COMPAT_CHAR(termiosp->c_cc[VKILL], csp->t_kill); in from_compat()
1168 FROM_COMPAT_CHAR(termiosp->c_cc[VINTR], csp->t_intrc); in from_compat()
1169 FROM_COMPAT_CHAR(termiosp->c_cc[VQUIT], csp->t_quitc); in from_compat()
1170 FROM_COMPAT_CHAR(termiosp->c_cc[VSTART], csp->t_startc); in from_compat()
1171 FROM_COMPAT_CHAR(termiosp->c_cc[VSTOP], csp->t_stopc); in from_compat()
1172 termiosp->c_cc[VEOL2] = 0; in from_compat()
1173 FROM_COMPAT_CHAR(termiosp->c_cc[VSUSP], csp->t_suspc); in from_compat()
1175 FROM_COMPAT_CHAR(termiosp->c_cc[VDSUSP], csp->t_dsuspc); in from_compat()
1176 FROM_COMPAT_CHAR(termiosp->c_cc[VREPRINT], csp->t_rprntc); in from_compat()
[all …]
/titanic_50/usr/src/lib/libshell/common/edit/
H A Dedit.c341 nttyparm.c_cc[VTIME] = 0; in tty_raw()
342 nttyparm.c_cc[VMIN] = 1; in tty_raw()
344 nttyparm.c_cc[VREPRINT] = _POSIX_DISABLE; in tty_raw()
347 nttyparm.c_cc[VDISCARD] = _POSIX_DISABLE; in tty_raw()
350 nttyparm.c_cc[VDSUSP] = _POSIX_DISABLE; in tty_raw()
353 if(ttyparm.c_cc[VWERASE] == _POSIX_DISABLE) in tty_raw()
356 ep->e_werase = nttyparm.c_cc[VWERASE]; in tty_raw()
357 nttyparm.c_cc[VWERASE] = _POSIX_DISABLE; in tty_raw()
362 if(ttyparm.c_cc[VLNEXT] == _POSIX_DISABLE ) in tty_raw()
365 ep->e_lnext = nttyparm.c_cc[VLNEXT]; in tty_raw()
[all …]
/titanic_50/usr/src/cmd/vi/port/
H A Dex_put.c1040 tty.c_cc[VMIN] = 1; in ostart()
1041 tty.c_cc[VTIME] = 1; in ostart()
1089 tty.c_cc[VQUIT] = termiosflag ? _POSIX_VDISABLE : '\200'; in ttcharoff()
1090 if (tty.c_cc[VSTART] != CTRL('q')) in ttcharoff()
1091 tty.c_cc[VSTART] = _POSIX_VDISABLE; in ttcharoff()
1092 if (tty.c_cc[VSTOP] != CTRL('s')) in ttcharoff()
1093 tty.c_cc[VSTOP] = _POSIX_VDISABLE; in ttcharoff()
1095 tty.c_cc[VSUSP] = _POSIX_VDISABLE; in ttcharoff()
1096 tty.c_cc[VDSUSP] = _POSIX_VDISABLE; in ttcharoff()
1097 tty.c_cc[VREPRINT] = _POSIX_VDISABLE; in ttcharoff()
[all …]
/titanic_50/usr/src/lib/libcurses/screen/
H A Dttimeout.c117 PROGTTYS.c_cc[VMIN] = 0; in _settimeout()
118 PROGTTYS.c_cc[VTIME] = (num > 25500) ? 255 : (num + 99) / 100; in _settimeout()
121 PROGTTYS.c_cc[VMIN] = 1; in _settimeout()
122 PROGTTYS.c_cc[VTIME] = 0; in _settimeout()
H A Dnocbreak.c54 PROGTTYS.c_cc[VEOF] = _CTRL('D'); in nocbreak()
55 PROGTTYS.c_cc[VEOL] = 0; in nocbreak()
H A Dcbreak.c82 PROGTTYS.c_cc[VMIN] = 1; in cbreak()
83 PROGTTYS.c_cc[VTIME] = 0; in cbreak()
/titanic_50/usr/src/lib/libnsl/dial/
H A Dline.c127 ttbufs.c_cc[i] = ttbuf.c_cc[i]; in fixline()
171 ttbufs.c_cc[VEOF] = '\1'; in fixline()
196 ttbufs.c_cc[VMIN] = HEADERSIZE; in fixline()
197 ttbufs.c_cc[VTIME] = 1; in fixline()
206 ttbuf.c_cc[i] = ttbufs.c_cc[i]; in fixline()
/titanic_50/usr/src/ucbcmd/tset/
H A Dtset.c263 #define curerase modes.c_cc[VERASE]
264 #define curkill modes.c_cc[VKILL]
265 #define curintr modes.c_cc[VINTR]
266 #define olderase oldmodes.c_cc[VERASE]
267 #define oldkill oldmodes.c_cc[VKILL]
268 #define oldintr oldmodes.c_cc[VINTR]
483 modes.c_cc[i] = oldmodes.c_cc[i] = mode.c_cc[i]; in main()
508 modes.c_cc[i] = mode.c_cc[i]; in main()
513 modes.c_cc[VQUIT] = reset(modes.c_cc[VQUIT], CQUIT); in main()
514 modes.c_cc[VEOF] = reset(modes.c_cc[VEOF], CEOF); in main()
[all …]
/titanic_50/usr/src/cmd/lp/filter/postscript/postio/
H A Difdef.c124 termio.c_cc[VMIN] = termio.c_cc[VTIME] = 0; in setupline()
136 termios.c_cc[VMIN] = termios.c_cc[VTIME] = 0; in setupline()
190 termio.c_cc[VMIN] = 1; in resetline()
191 termio.c_cc[VTIME] = 0; in resetline()
237 termio.c_cc[VMIN] = 1; in setupstdin()
238 termio.c_cc[VTIME] = 0; in setupstdin()

1234