Searched refs:termios (Results 1 - 25 of 231) sorted by relevance

12345678910

/macosx-10.10/Heimdal-398.1.2/appl/login/
H A Dstty_default.c38 #include <termios.h>
40 /* HP-UX 9.0 termios doesn't define these */
75 struct termios termios; local
81 tcgetattr(0, &termios);
83 termios.c_iflag |= (BRKINT|IGNPAR|ICRNL|IXON|IMAXBEL);
84 termios.c_iflag &= ~IXANY;
86 termios.c_lflag |= (ISIG|IEXTEN|ICANON|ECHO|ECHOE|ECHOK|ECHOCTL|ECHOKE);
87 termios.c_lflag &= ~(ECHOPRT|TOSTOP|FLUSHO);
89 termios
[all...]
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-nextstep.h51 int tcgetattr(int, struct termios *);
52 int tcsetattr(int, int, const struct termios *);
54 speed_t cfgetospeed(const struct termios *);
55 speed_t cfgetispeed(const struct termios *);
56 int cfsetospeed(struct termios *, int);
57 int cfsetispeed(struct termios *, int);
H A Dbsd-nextstep.c47 tcgetattr(int fd, struct termios *t)
53 tcsetattr(int fd, int opt, const struct termios *t)
55 struct termios localterm;
80 speed_t cfgetospeed(const struct termios *t)
85 speed_t cfgetispeed(const struct termios *t)
91 cfsetospeed(struct termios *t,int speed)
98 cfsetispeed(struct termios *t, int speed)
/macosx-10.10/adv_cmds-158/stty/
H A Dextern.h41 void gprint(struct termios *, struct winsize *, int);
42 void gread(struct termios *, char *);
46 void print(struct termios *, struct winsize *, int, enum FMT);
H A Dstty.h38 #include <termios.h>
47 struct termios t; /* terminal info */
/macosx-10.10/OpenSSH-189/openssh/
H A Dsshpty.h17 #include <termios.h>
19 struct termios *get_saved_tio(void);
H A Dclientloop.h38 #include <termios.h>
45 void client_session2_setup(int, int, int, const char *, struct termios *,
H A Dsshtty.c42 #include <termios.h>
47 static struct termios _saved_tio;
50 struct termios *
71 struct termios tio;
/macosx-10.10/system_cmds-643.1.1/getty.tproj/
H A Dextern.h38 struct termios;
42 extern struct termios tmode, omode;
/macosx-10.10/Libc-1044.1.2/emulated/
H A Dtcgetsid.c28 #include <termios.h>
29 #include <sys/ioctl_compat.h> /* ordering avoid termios.h redeclarations */
/macosx-10.10/Libc-1044.1.2/include/
H A Dtermios.h27 #include <sys/termios.h>
H A Dutil.h66 #include <termios.h>
98 int openpty(int *, int *, char *, struct termios *,
101 pid_t forkpty(int *, char *, struct termios *, struct winsize *);
/macosx-10.10/bind9-45.101/bind9/lib/isc/unix/include/isc/
H A Dkeyboard.h25 #include <termios.h>
34 struct termios saved_mode;
/macosx-10.10/ntp-92/lib/isc/unix/include/isc/
H A Dkeyboard.h25 #include <termios.h>
34 struct termios saved_mode;
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Disatty.c36 #include <termios.h>
48 struct termios t;
H A Dtermios.c31 static char sccsid[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94";
34 __FBSDID("$FreeBSD: src/lib/libc/gen/termios.c,v 1.16 2009/05/07 13:49:48 ed Exp $");
49 #include <termios.h>
57 struct termios *t;
66 const struct termios *t;
68 struct termios localterm;
142 const struct termios *t;
150 const struct termios *t;
158 struct termios *t;
168 struct termios *
[all...]
/macosx-10.10/ntp-92/include/
H A Dntp_tty.h40 # include <termios.h>
44 #define TTY struct termios
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Drlwinsize.h39 # include <termios.h>
H A Drltty.h27 /* Posix systems use termios and the Posix signal functions. */
29 # include <termios.h>
/macosx-10.10/postfix-255/postfix/src/util/
H A Dpeekfd.c41 #include <termios.h>
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Dtermios.h1 /* Generic termios.h */
21 #include <termios.h>
27 #define TERMIO_TYPE struct termios
/macosx-10.10/bash-94.1.2/bash-3.2/include/
H A Dshtty.h41 * between sys/ioctl.h and termios.h. Ditto for the test against SunOS4
54 # include <termios.h>
55 # define TTYSTRUCT struct termios
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/include/
H A Dterminal.h29 * This will use POSIX <termios.h> interface where available
33 # include <termios.h>
48 # include <sys/termios.h>
80 # if SHOPT_OLDTERMIO /* use both termios and termio */
104 # define termios termio macro
120 # define termios sgttyb macro
190 extern int tty_get(int,struct termios*);
193 extern int tty_set(int, int, struct termios*);
197 extern int sh_tcgetattr(int,struct termios*);
198 extern int sh_tcsetattr(int,int,struct termios*);
[all...]
/macosx-10.10/Libc-1044.1.2/util/
H A Dpty.c67 #include <termios.h>
75 struct termios *termp;
104 struct termios *termp;
/macosx-10.10/diskdev_cmds-576/fdisk.tproj/
H A Dutil.h99 struct termios;
121 int openpty __P((int *, int *, char *, struct termios *,
125 pid_t forkpty __P((int *, char *, struct termios *, struct winsize *));

Completed in 311 milliseconds

12345678910