/src/games/hack/ |
hack.ioctl.c | 74 #include <termios.h> 77 static struct termios termios; variable in typeref:struct:termios 82 (void) tcgetattr(fileno(stdin), &termios); 88 (void) tcsetattr(fileno(stdin), TCSADRAIN, &termios);
|
/src/usr.sbin/lpr/lpd/ |
extern.h | 35 #include <termios.h> 49 struct termios t; /* terminal info */ 57 void sttyclearflags(struct termios *tp, int flags); 58 void sttysetflags(struct termios *tp, int flags); 59 void sttyclearlflags(struct termios *tp, int flags); 60 void sttysetlflags(struct termios *tp, int flags);
|
/src/bin/stty/ |
extern.h | 41 void gprint(struct termios *); 42 void gread(struct termios *, char *); 46 void print(struct termios *, struct winsize *, int, const char *, enum FMT);
|
stty.h | 38 #include <termios.h> 48 struct termios t; /* terminal info */
|
/src/sys/arch/arm/clps711x/ |
clpssocvar.h | 35 #include <sys/termios.h>
|
/src/games/atc/ |
extern.c | 53 #include <termios.h> 76 struct termios tty_start, tty_new;
|
/src/lib/libc/gen/ |
isatty.c | 45 #include <termios.h> 55 struct termios t;
|
/src/lib/libc/termios/ |
cfgetispeed.c | 35 static char sccsid[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94"; 45 #include <termios.h> 52 cfgetispeed(const struct termios *t)
|
cfgetospeed.c | 35 static char sccsid[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94"; 45 #include <termios.h> 52 cfgetospeed(const struct termios *t)
|
cfsetispeed.c | 35 static char sccsid[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94"; 45 #include <termios.h> 52 cfsetispeed(struct termios *t, speed_t speed)
|
cfsetospeed.c | 35 static char sccsid[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94"; 45 #include <termios.h> 52 cfsetospeed(struct termios *t, speed_t speed)
|
cfsetspeed.c | 35 static char sccsid[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94"; 45 #include <termios.h> 52 cfsetspeed(struct termios *t, speed_t speed)
|
tcgetattr.c | 35 static char sccsid[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94"; 47 #include <termios.h> 54 tcgetattr(int fd, struct termios *t)
|
tcsetattr.c | 35 static char sccsid[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94"; 47 #include <termios.h> 54 tcsetattr(int fd, int opt, const struct termios *t) 56 struct termios localterm;
|
cfmakeraw.c | 35 static char sccsid[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94"; 45 #include <termios.h> 52 * Make a pre-existing termios structure into "raw" mode: character-at-a-time 56 cfmakeraw(struct termios *t)
|
tcdrain.c | 35 static char sccsid[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94"; 46 #include <termios.h>
|
tcgetwinsize.c | 38 #define _NETBSD_SOURCE /* need the ioctl values to be in <termios.h> */ 42 #include <termios.h>
|
tcsetwinsize.c | 38 #define _NETBSD_SOURCE /* need the ioctl values to be in <termios.h> */ 42 #include <termios.h>
|
/src/usr.bin/tset/ |
extern.h | 34 extern struct termios mode, oldmode;
|
/src/games/robots/ |
flush_in.c | 42 #include <termios.h>
|
/src/sys/arch/arm/footbridge/ |
footbridge.h | 6 #include <sys/termios.h>
|
/src/sys/arch/arm/s3c2xx0/ |
s3c24x0var.h | 36 #include <sys/termios.h>
|
/src/tests/lib/libc/termios/ |
Makefile | 5 TESTSDIR= ${TESTSBASE}/lib/libc/termios
|
/src/sys/arch/epoc32/windermere/ |
windermerevar.h | 37 #include <sys/termios.h>
|
/src/sys/sys/ |
termios.h | 1 /* $NetBSD: termios.h,v 1.36 2018/12/07 19:01:11 jakllsch Exp $ */ 31 * @(#)termios.h 8.3 (Berkeley) 3/28/94 192 struct termios { struct 203 * Commands passed to tcsetattr() for setting the termios structure. 272 speed_t cfgetispeed(const struct termios *); 273 speed_t cfgetospeed(const struct termios *); 274 int cfsetispeed(struct termios *, speed_t); 275 int cfsetospeed(struct termios *, speed_t); 276 int tcgetattr(int, struct termios *); 277 int tcsetattr(int, int, const struct termios *); [all...] |