Searched refs:ICANON (Results 1 - 25 of 68) sorted by relevance

123

/macosx-10.9.5/emacs-92/emacs/mac/inc/
H A Dtermio.h63 #define ICANON 0x2 /* canonical input (erase and kill processing) */ macro
/macosx-10.9.5/Heimdal-323.92.1/appl/login/
H A Dstty_default.c86 termios.c_lflag |= (ISIG|IEXTEN|ICANON|ECHO|ECHOE|ECHOK|ECHOCTL|ECHOKE);
/macosx-10.9.5/ncurses-42/ncurses/ncurses/tinfo/
H A Dlib_raw.c94 buf.c_lflag &= ~(ICANON | ISIG | IEXTEN);
126 buf.c_lflag &= ~ICANON;
187 buf.c_lflag |= ISIG | ICANON |
218 buf.c_lflag |= ICANON;
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dshtty.c114 ttp->c_lflag &= ~ICANON;
239 ttp->c_lflag &= ~ICANON;
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dsshtty.c84 tio.c_lflag &= ~(ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHONL);
H A Dttymodes.h132 TTYMODE(ICANON, c_lflag, 51)
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/examples/
H A Dexcallback.c112 term.c_lflag &= ~ICANON;
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dttydefaults.h80 #define TTYDEF_LFLAG (ECHO | ICANON | ISIG | IEXTEN | ECHOE|ECHOKE|ECHOCTL)
/macosx-10.9.5/ncurses-42/ncurses/ncurses/trace/
H A Dlib_tracebits.c153 {ICANON, "ICANON"},
159 #define ALLLOCAL (ECHO|ECHONL|ICANON|ISIG|NOFLSH|TOSTOP|IEXTEN)
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/unix/
H A Dkeyboard.c61 current_mode.c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
/macosx-10.9.5/ntp-88/lib/isc/unix/
H A Dkeyboard.c61 current_mode.c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
/macosx-10.9.5/vim-53/src/
H A Dos_beos.c105 tnew.c_lflag &= ~ICANON;
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dtty_compat.c545 if ((lflag&ICANON) == 0) {
600 lflag &= ~(ECHOCTL|ISIG|ICANON|IEXTEN);
610 lflag &= ~ICANON;
612 lflag |= ICANON;
H A Dtty.c514 if (ISSET(lflag, ICANON)) {
531 (!ISSET(lflag, ICANON) || tp->t_canq.c_cc != 0) &&
594 * by ICANON, ISIG, or IXON.
688 if (!ISSET(tp->t_lflag, EXTPROC) && ISSET(lflag, ICANON)) {
810 if (!ISSET(lflag, ICANON)) {
1292 if (ISSET(t->c_lflag, ICANON) != ISSET(tp->t_lflag, ICANON) &&
1294 if (ISSET(t->c_lflag, ICANON))
1299 * ICANON while we're in a non-termios line
1583 if (!ISSET(tp->t_lflag, ICANON)) {
[all...]
/macosx-10.9.5/adv_cmds-153/stty/
H A Dmodes.c176 { "icanon", ICANON, 0 },
177 { "-icanon", 0, ICANON },
H A Dkey.c154 ip->t.c_lflag &= ~ICANON;
/macosx-10.9.5/sudo-72/src/
H A Dterm.c166 CLR(term.c_lflag, ECHO | ICANON | ISIG | IEXTEN);
186 CLR(term.c_lflag, ECHO | ECHONL | ICANON | IEXTEN);
/macosx-10.9.5/tcsh-65/tcsh/
H A Dmi.termios.c205 * ICANON: set if neither CBREAK nor RAW
221 termios_p->c_lflag |= ICANON;
322 * (c_cc[VMIN] != 1 || c_cc[VTIME] != 0) && ! c_lflag & ICANON
323 * c_lflag & ICANON && ! c_lflag & ISIG
348 if (!(termios_p->c_lflag & ICANON))
H A Ded.term.c47 { "lflag:", (ISIG|ICANON|ECHO|ECHOE|ECHOCTL|IEXTEN),
61 (NOFLSH|ICANON|ECHO|ECHOK|ECHONL|EXTPROC|IEXTEN|FLUSHO|
252 # ifdef ICANON
253 { "icanon", ICANON, M_LINED },
254 # endif /* ICANON */
1075 return (td->d_t.c_lflag & ICANON);
/macosx-10.9.5/CPANInternal-140/TermReadKey/
H A DReadKey.xs970 work.c_lflag &= ~(ICANON|ISIG|IEXTEN );
996 work.c_lflag &= ~(ICANON | ISIG | IEXTEN | ECHO);
1012 work.c_lflag &= ~(ICANON | ECHO);
1030 work.c_lflag |= ICANON|ISIG|IEXTEN;
1048 work.c_lflag |= ICANON|ECHO|ISIG|IEXTEN;
1126 work.c_lflag &= ~(ECHO | ISIG | ICANON | XCASE);
1144 work.c_lflag &= ~(ECHO | ISIG | ICANON);
1158 work.c_lflag &= ~(ECHO | ICANON);
1174 work.c_lflag |= (ISIG | ICANON);
1184 /* This assumes turning ECHO and ICANON bac
[all...]
/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dtermios.c198 t->c_lflag &= ~(ECHO|ECHOE|ECHOK|ECHONL|ICANON|ISIG|IEXTEN|NOFLSH|TOSTOP|PENDIN);
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dbsd-openpty.c207 tio.c_lflag |= (ECHO | ISIG | ICANON);
/macosx-10.9.5/uucp-11/uucp/unix/
H A Dcusub.c841 sSterm_new.c_lflag &=~ (ICANON | ISIG | ECHO | ECHOE | ECHOK | ECHONL);
843 sSterm_new.c_lflag &=~ (ICANON | ISIG);
857 (ICANON | IEXTEN | ISIG | ECHO | ECHOE | ECHOK | ECHONL);
859 sSterm_new.c_lflag &=~ (ICANON | IEXTEN | ISIG);
/macosx-10.9.5/remote_cmds-41.90.1/telnetd.tproj/
H A Dsys_term.c588 return(!(termbuf.c_lflag & ICANON));
604 termbuf.c_lflag &= ~ICANON;
606 termbuf.c_lflag |= ICANON;
677 return(termbuf.c_lflag & ICANON);
701 termbuf.c_lflag |= ICANON;
703 termbuf.c_lflag &= ~ICANON;
/macosx-10.9.5/ntp-88/ntpd/
H A Drefclock_leitch.c286 ttyb.c_lflag = ICANON;
313 ttyp->c_lflag = ICANON;

Completed in 403 milliseconds

123