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

1234567891011>>

/freebsd-current/sys/sys/
H A Dtermios.h2 #warning "this file includes <sys/termios.h> which is deprecated, use <termios.h> instead"
4 #include <termios.h>
H A Dttycom.h57 #define TIOCGETA _IOR('t', 19, struct termios) /* get termios struct */
58 #define TIOCSETA _IOW('t', 20, struct termios) /* set termios struct */
59 #define TIOCSETAW _IOW('t', 21, struct termios) /* drain output, set */
60 #define TIOCSETAF _IOW('t', 22, struct termios) /* drn out, fls in, set */
128 #define TTYDISC 0 /* termios tty line discipline */
/freebsd-current/crypto/heimdal/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...]
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dbsd-nextstep.h49 int tcgetattr(int, struct termios *);
50 int tcsetattr(int, int, const struct termios *);
52 speed_t cfgetospeed(const struct termios *);
53 speed_t cfgetispeed(const struct termios *);
54 int cfsetospeed(struct termios *, int);
55 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)
/freebsd-current/lib/libc/gen/
H A Disatty.c32 #include <termios.h>
39 struct termios t;
/freebsd-current/bin/stty/
H A Dextern.h34 void gprint(struct termios *, struct winsize *, int);
35 void gread(struct termios *, char *);
39 void print(struct termios *, struct winsize *, int, enum FMT);
H A Dstty.h31 #include <termios.h>
40 struct termios t; /* terminal info */
/freebsd-current/crypto/openssh/
H A Dsshpty.h17 #include <termios.h>
19 struct termios *get_saved_tio(void);
H A Dclientloop.h38 #include <termios.h>
48 const char *, struct termios *, int, struct sshbuf *, char **);
H A Dsshtty.c42 #include <termios.h>
47 static struct termios _saved_tio;
50 struct termios *
71 struct termios tio;
/freebsd-current/usr.sbin/lpr/lpd/
H A Dextern.h38 struct termios;
44 int msearch(char *_str, struct termios *_ip);
/freebsd-current/usr.bin/bc/
H A Dextern.h31 struct termios;
32 int gettty(struct termios *);
46 extern struct termios ttysaved;
H A Dtty.c22 #include <termios.h>
25 struct termios ttysaved, ttyedit;
28 settty(struct termios *t)
38 gettty(struct termios *t)
/freebsd-current/contrib/nvi/ex/
H A Dscript.h18 struct termios sh_term; /* Terminal information. */
/freebsd-current/include/
H A Dtermios.h57 * Commands passed to tcsetattr() for setting the termios structure.
75 speed_t cfgetispeed(const struct termios *);
76 speed_t cfgetospeed(const struct termios *);
77 int cfsetispeed(struct termios *, speed_t);
78 int cfsetospeed(struct termios *, speed_t);
79 int tcgetattr(int, struct termios *);
80 int tcsetattr(int, int, const struct termios *);
92 void cfmakeraw(struct termios *);
93 void cfmakesane(struct termios *);
94 int cfsetspeed(struct termios *, speed_
[all...]
/freebsd-current/contrib/ncurses/include/
H A Dncurses_mingw.h57 struct termios struct
72 const struct termios* arg);
75 struct termios* arg);
/freebsd-current/libexec/getty/
H A Dextern.h33 struct termios;
38 extern struct termios tmode, omode;
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A Dembedded_interpreter.py36 import termios namespace
39 hw = struct.unpack("hh", fcntl.ioctl(fd, termios.TIOCGWINSZ, "1234"))
79 import termios namespace
81 old = termios.tcgetattr(fd)
82 if old[3] & termios.ECHO:
84 new = termios.tcgetattr(fd)
85 new[3] = new[3] & ~termios.ECHO
87 termios.tcsetattr(fd, termios.TCSADRAIN, new)
95 termios
[all...]
/freebsd-current/contrib/llvm-project/lldb/tools/driver/
H A DPlatform.cpp49 int tcsetattr(int fd, int optional_actions, const struct termios *termios_p) {
53 int tcgetattr(int fildes, struct termios *termios_p) {
H A DPlatform.h47 struct termios { struct
72 const struct termios *termios_p);
73 extern int tcgetattr(int fildes, struct termios *termios_p);
80 #include <termios.h>
/freebsd-current/lib/libutil/
H A Dlogin_tty.c37 #include <termios.h>
/freebsd-current/stand/kboot/libkboot/
H A DMakefile12 termios.c
/freebsd-current/contrib/nvi/cl/
H A Dcl.h27 struct termios orig; /* Original terminal values. */
28 struct termios ex_enter;/* Terminal values to enter ex. */
29 struct termios vi_enter;/* Terminal values to enter vi. */
/freebsd-current/lib/libvgl/
H A Dkeyboard.c35 #include <termios.h>
41 static struct termios VGLKeyboardTty;
47 static struct termios term;

Completed in 246 milliseconds

1234567891011>>