Searched refs:tio (Results 1 - 25 of 30) sorted by relevance

12

/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/include/ac/
H A Dtermios.h31 #define GETFLAGS( tio ) ((tio).c_lflag)
32 #define SETFLAGS( tio, flags ) ((tio).c_lflag = (flags))
45 #define GETFLAGS( tio ) ((tio).sg_flags)
46 #define SETFLAGS( tio, flags ) ((tio).sg_flags = (flags))
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dsshtty.c71 struct termios tio; local
73 if (tcgetattr(fileno(stdin), &tio) == -1) {
78 _saved_tio = tio;
79 tio.c_iflag |= IGNPAR;
80 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF);
82 tio.c_iflag &= ~IUCLC;
84 tio.c_lflag &= ~(ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHONL);
86 tio.c_lflag &= ~IEXTEN;
88 tio.c_oflag &= ~OPOST;
89 tio
[all...]
H A Dttymodes.c283 struct termios tio; local
302 debug("tty_make_modes: no fd or tio");
305 if (tcgetattr(fd, &tio) == -1) {
310 tio = *tiop;
313 baud = speed_to_baud(cfgetospeed(&tio));
316 baud = speed_to_baud(cfgetispeed(&tio));
323 put_arg(&buf, special_char_encode(tio.c_cc[NAME]));
327 put_arg(&buf, ((tio.FIELD & NAME) != 0));
351 struct termios tio; local
374 if (tcgetattr(fd, &tio)
[all...]
H A Dserverloop.c473 struct termios tio; local
495 tcgetattr(fdin, &tio) == 0 &&
496 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
H A Dmux.c103 struct termios tio; member in struct:mux_session_confirm_ctx
434 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
1292 cctx->term, &cctx->tio, c->rfd, &cctx->cmd, cctx->env);
/macosx-10.9.5/screen-22/screen/
H A Dtty.c206 /* struct termios tio
211 m->tio.c_iflag |= BRKINT;
214 m->tio.c_iflag |= IGNPAR;
216 /* IF{ISTRIP} m->tio.c_iflag |= ISTRIP; may be needed, let's try. jw. */
218 m->tio.c_iflag |= IXON;
220 /* IF{IMAXBEL} m->tio.c_iflag |= IMAXBEL; sorry, this one is ridiculus. jw */
225 m->tio.c_iflag |= ICRNL;
228 m->tio.c_oflag |= ONLCR;
231 m->tio.c_oflag |= TAB3;
234 m->tio
[all...]
H A Dtty.c.dist206 /* struct termios tio
211 m->tio.c_iflag |= BRKINT;
214 m->tio.c_iflag |= IGNPAR;
216 /* IF{ISTRIP} m->tio.c_iflag |= ISTRIP; may be needed, let's try. jw. */
218 m->tio.c_iflag |= IXON;
220 /* IF{IMAXBEL} m->tio.c_iflag |= IMAXBEL; sorry, this one is ridiculus. jw */
225 m->tio.c_iflag |= ICRNL;
228 m->tio.c_oflag |= ONLCR;
231 m->tio.c_oflag |= TAB3;
234 m->tio
[all...]
H A Dtty.sh232 /* struct termios tio
236 IF{BRKINT} m->tio.c_iflag |= BRKINT;
237 IF{IGNPAR} m->tio.c_iflag |= IGNPAR;
238 /* IF{ISTRIP} m->tio.c_iflag |= ISTRIP; may be needed, let's try. jw. */
239 IF{IXON} m->tio.c_iflag |= IXON;
240 /* IF{IMAXBEL} m->tio.c_iflag |= IMAXBEL; sorry, this one is ridiculus. jw */
244 IF{ICRNL} m->tio.c_iflag |= ICRNL;
245 IF{ONLCR} m->tio.c_oflag |= ONLCR;
246 IF{TAB3} m->tio.c_oflag |= TAB3;
247 IF{OXTABS} m->tio
[all...]
H A Dscreen.h115 struct termios tio; member in struct:mode
121 struct termio tio;
H A Dsocket.c981 olddisplays->d_NewMode.tio.c_cc[VINTR] = VDISABLE;
982 olddisplays->d_NewMode.tio.c_lflag &= ~ISIG;
H A Dwindow.c1318 modep->tio.c_lflag &= ~ECHO;
1319 modep->tio.c_iflag &= ~ICRNL;
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dbsd-openpty.c184 struct termios tio;
206 if (tcgetattr(*amaster, &tio) != -1) {
207 tio.c_lflag |= (ECHO | ISIG | ICANON);
208 tio.c_oflag |= (OPOST | ONLCR);
209 tio.c_iflag |= ICRNL;
210 tcsetattr(*amaster, TCSANOW, &tio);
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/nssov/
H A DMakefile45 XOBJS = tio.lo
55 tio.lo: nss-pam-ldapd/tio.c
/macosx-10.9.5/zsh-60/zsh/Src/Zle/
H A Dzle_main.c252 shttyinfo.tio.c_lflag |= ICANON | ECHO;
254 shttyinfo.tio.c_lflag &= ~FLUSHO;
265 ti.tio.c_iflag &= ~IXON;
266 ti.tio.c_lflag &= ~(ICANON | ECHO
272 ti.tio.c_oflag &= ~TAB3;
275 ti.tio.c_oflag &= ~OXTABS;
278 ti.tio.c_oflag &= ~XTABS;
283 ti.tio.c_oflag |= ONLCR;
285 ti.tio.c_cc[VQUIT] =
287 ti.tio
[all...]
/macosx-10.9.5/remote_cmds-41.90.1/talk.tproj/
H A Dinit_disp.c140 struct termios tio; local
142 tcgetattr(0, &tio);
143 my_win.cerase = tio.c_cc[VERASE];
144 my_win.kill = tio.c_cc[VKILL];
145 my_win.werase = tio.c_cc[VWERASE];
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/
H A Dtktextio.rb924 #tio = TkTextIO.new(f, :show=>:nil,
925 #tio = TkTextIO.new(f, :show=>:pos,
926 tio = TkTextIO.new(f, :show=>:insert,
934 $stdin = tio
935 $stdout = tio
936 $stderr = tio
952 p tio
957 puts "current show_mode is #{tio.show_mode}."
958 if tio.show_mode == :pos
961 puts "So, you can see the position '#{tio
[all...]
/macosx-10.9.5/zsh-60/zsh/Src/Modules/
H A Dzpty.c95 if (tcgetattr(fd, &ti->tio) == -1)
97 if (ioctl(fd, TCGETS, &ti->tio) == -1)
102 ioctl(fd, TCGETA, &ti->tio);
125 tcsetattr(fd, TCSADRAIN, &ti->tio);
126 /* if (tcsetattr(SHTTY, TCSADRAIN, &ti->tio) == -1) */
128 ioctl(fd, TCSETS, &ti->tio);
129 /* if (ioctl(SHTTY, TCSETS, &ti->tio) == -1) */
134 ioctl(fd, TCSETA, &ti->tio);
366 info.tio.c_lflag &= ~ECHO;
369 info.tio
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/
H A Drltty.c660 TIOTYPE tio; local
670 if (get_tty_settings (tty, &tio) < 0)
683 otio = tio;
704 _rl_bind_tty_special_chars (vi_insertion_keymap, tio);
707 _rl_bind_tty_special_chars (_rl_keymap, tio);
710 prepare_terminal_settings (meta_flag, otio, &tio);
712 if (set_tty_settings (tty, &tio) < 0)
/macosx-10.9.5/ntp-88/ntpd/
H A Drefclock_parse.c2799 struct termios tio; /* NEEDED FOR A LONG TIME ! */ local
2802 struct termio tio; /* NEEDED FOR A LONG TIME ! */ local
2908 if (TTY_GETATTR(fd232, &tio) == -1)
2910 msyslog(LOG_ERR, "PARSE receiver #%d: parse_start: tcgetattr(%d, &tio): %m", unit, fd232);
2917 memset((char *)tio.c_cc, 0, sizeof(tio.c_cc));
2926 memset((char *)tio.c_cc, 0, sizeof(tio.c_cc)); /* best guess */
2930 memset((char *)tio.c_cc, disablec, sizeof(tio
4662 struct termios tio; local
4665 struct termio tio; local
5086 struct termios tio; /* NEEDED FOR A LONG TIME ! */ local
5089 struct termio tio; /* NEEDED FOR A LONG TIME ! */ local
[all...]
H A Drefclock_palisade.c274 struct termios tio; local
292 if (tcgetattr(fd, &tio) < 0) {
294 "Palisade(%d) tcgetattr(fd, &tio): %m",unit);
296 printf("Palisade(%d) tcgetattr(fd, &tio)\n",unit);
302 tio.c_cflag |= (PARENB|PARODD);
303 tio.c_iflag &= ~ICRNL;
324 tio.c_cflag = (CS8|CLOCAL|CREAD);
334 if (tcsetattr(fd, TCSANOW, &tio) == -1) {
335 msyslog(LOG_ERR, "Palisade(%d) tcsetattr(fd, &tio): %m",unit);
337 printf("Palisade(%d) tcsetattr(fd, &tio)\
[all...]
H A Drefclock_ripencc.c471 struct termios tio; local
482 if (tcgetattr(fd, &tio) < 0) {
483 msyslog(LOG_ERR, "Palisade(%d) tcgetattr(fd, &tio): %m",unit);
490 tio.c_cflag |= (PARENB|PARODD);
491 tio.c_iflag &= ~ICRNL;
492 if (tcsetattr(fd, TCSANOW, &tio) == -1) {
493 msyslog(LOG_ERR, "Palisade(%d) tcsetattr(fd, &tio): %m",unit);
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dutils.c1506 if (tcgetattr(SHTTY, &ti->tio) == -1)
1508 if (ioctl(SHTTY, TCGETS, &ti->tio) == -1)
1513 ioctl(SHTTY, TCGETA, &ti->tio);
1534 while (tcsetattr(SHTTY, TCSADRAIN, &ti->tio) == -1 && errno == EINTR)
1537 while (ioctl(SHTTY, TCSETS, &ti->tio) == -1 && errno == EINTR)
1543 ioctl(SHTTY, TCSETA, &ti->tio);
2228 if ((polltty = ti.tio.c_cc[VMIN])) {
2229 ti.tio.c_cc[VMIN] = 0;
2231 ti.tio.c_cc[VTIME] = (int) (microseconds / (zlong)100000);
2265 ti.tio
[all...]
H A Dinit.c621 if (shttyinfo.tio.c_cc[VSWTCH] <= 0) /* hack for irises */
622 shttyinfo.tio.c_cc[VSWTCH] = CSWTCH;
H A Dzsh.h2152 struct termios tio; member in struct:ttyinfo
2155 struct termio tio;
2171 #define SGTTYFLAG shttyinfo.tio.c_oflag
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dtls_m.c852 struct termios tio; local
853 tcgetattr( fd, &tio );
854 tio.c_lflag &= ~ECHO;
855 tcsetattr( fd, TCSAFLUSH, &tio );
866 struct termios tio; local
867 tcgetattr( fd, &tio );
868 tio.c_lflag |= ECHO;
869 tcsetattr( fd, TCSAFLUSH, &tio );
870 tcsetattr( fd, TCSAFLUSH, &tio );

Completed in 323 milliseconds

12