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

/xnu-2422.115.4/bsd/sys/
H A Dttycom.h109 #define TIOCGETA _IOR('t', 19, struct termios) /* get termios struct */
110 #define TIOCSETA _IOW('t', 20, struct termios) /* set termios struct */
111 #define TIOCSETAW _IOW('t', 21, struct termios) /* drain output, set */
112 #define TIOCSETAF _IOW('t', 22, struct termios) /* drn out, fls in, set */
114 #define TIOCGETA_32 _IOR('t', 19, struct termios32) /* get termios struct */
115 #define TIOCSETA_32 _IOW('t', 20, struct termios32) /* set termios struct */
185 #define TTYDISC 0 /* termios tty line discipline */
H A Dtermios.h61 * @(#)termios.h 8.3 (Berkeley) 3/28/94
267 struct termios { struct
282 * LP64 version of struct termios. tcflag_t and speed_t are long and must
284 * WARNING - keep in sync with struct termios
311 * Commands passed to tcsetattr() for setting the termios structure.
364 speed_t cfgetispeed(const struct termios *);
365 speed_t cfgetospeed(const struct termios *);
366 int cfsetispeed(struct termios *, speed_t);
367 int cfsetospeed(struct termios *, speed_t);
368 int tcgetattr(int, struct termios *);
[all...]
H A Dtty.h74 #include <sys/termios.h>
132 struct termios t_termios; /* Termios state. */
139 int (*t_param)(struct tty *, struct termios *);
302 void termioschars(struct termios *t);
H A DMakefile32 sysctl.h syslimits.h syslog.h sys_domain.h termios.h time.h \
84 ttycom.h termios.h msg.h \
/xnu-2422.115.4/bsd/man/man4/
H A DMakefile41 termios.4 \
/xnu-2422.115.4/bsd/kern/
H A Dtty_compat.c81 #include <sys/termios.h>
89 static void ttcompatsetflags(struct tty *tp, struct termios *t);
90 static void ttcompatsetlflags(struct tty *tp, struct termios *t);
95 * baud rate information. They are a mapping between the <sys/termios.h>
132 * contents of the table. This effectively changes termios.h
187 * struct termios *term A local stack termios structure from
201 * termios is a local stack copy from ttcompat(), and not the
211 ttsetcompat(struct tty *tp, u_long *com, caddr_t data, struct termios *term)
376 struct termios ter
[all...]
H A Dtty.c82 * o Don't allow certain termios flags to affect disciplines other
1183 case TIOCGETA_32: /* get termios struct */
1187 bcopy(&tp->t_termios, data, sizeof(struct termios));
1190 case TIOCGETA_64: /* get termios struct */
1192 bcopy(&tp->t_termios, data, sizeof(struct termios));
1221 case TIOCSETA_32: /* set termios struct */
1228 struct termios *t = (struct termios *)data;
1229 struct termios lcl_termios;
1299 * ICANON while we're in a non-termios lin
[all...]

Completed in 86 milliseconds