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

1234567891011>>

/freebsd-13-stable/sys/sys/
H A Dtermios.h3 #warning "this file includes <sys/termios.h> which is deprecated, use <termios.h> instead"
5 #include <termios.h>
H A Dttycom.h60 #define TIOCGETA _IOR('t', 19, struct termios) /* get termios struct */
61 #define TIOCSETA _IOW('t', 20, struct termios) /* set termios struct */
62 #define TIOCSETAW _IOW('t', 21, struct termios) /* drain output, set */
63 #define TIOCSETAF _IOW('t', 22, struct termios) /* drn out, fls in, set */
131 #define TTYDISC 0 /* termios tty line discipline */
/freebsd-13-stable/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-13-stable/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-13-stable/bin/stty/
H A Dextern.h37 void gprint(struct termios *, struct winsize *, int);
38 void gread(struct termios *, char *);
42 void print(struct termios *, struct winsize *, int, enum FMT);
H A Dstty.h34 #include <termios.h>
43 struct termios t; /* terminal info */
/freebsd-13-stable/lib/libc/gen/
H A Disatty.c36 #include <termios.h>
43 struct termios t;
/freebsd-13-stable/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-13-stable/usr.sbin/lpr/lpd/
H A Dextern.h41 struct termios;
47 int msearch(char *_str, struct termios *_ip);
/freebsd-13-stable/usr.bin/bc/
H A Dextern.h32 struct termios;
33 int gettty(struct termios *);
47 extern struct termios ttysaved;
H A Dtty.c23 #include <termios.h>
26 struct termios ttysaved, ttyedit;
29 settty(struct termios *t)
39 gettty(struct termios *t)
/freebsd-13-stable/contrib/nvi/ex/
H A Dscript.h18 struct termios sh_term; /* Terminal information. */
/freebsd-13-stable/usr.bin/tset/
H A Dextern.h35 #include <termios.h>
37 extern struct termios mode, oldmode;
/freebsd-13-stable/include/
H A Dtermios.h31 * @(#)termios.h 8.3 (Berkeley) 3/28/94
60 * Commands passed to tcsetattr() for setting the termios structure.
78 speed_t cfgetispeed(const struct termios *);
79 speed_t cfgetospeed(const struct termios *);
80 int cfsetispeed(struct termios *, speed_t);
81 int cfsetospeed(struct termios *, speed_t);
82 int tcgetattr(int, struct termios *);
83 int tcsetattr(int, int, const struct termios *);
95 void cfmakeraw(struct termios *);
96 void cfmakesane(struct termios *);
[all...]
/freebsd-13-stable/contrib/ncurses/include/
H A Dncurses_mingw.h57 struct termios struct
72 const struct termios* arg);
75 struct termios* arg);
/freebsd-13-stable/libexec/getty/
H A Dextern.h36 struct termios;
41 extern struct termios tmode, omode;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A Dembedded_interpreter.py65 import termios namespace
67 hw = struct.unpack('hh', fcntl.ioctl(fd, termios.TIOCGWINSZ, '1234'))
92 import termios namespace
93 old = termios.tcgetattr(fd)
94 if old[3] & termios.ECHO:
96 new = termios.tcgetattr(fd)
97 new[3] = new[3] & ~termios.ECHO
99 termios.tcsetattr(fd, termios.TCSADRAIN, new)
106 termios
[all...]
/freebsd-13-stable/contrib/ntp/lib/isc/unix/include/isc/
H A Dkeyboard.h25 #include <termios.h>
34 struct termios saved_mode;
/freebsd-13-stable/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.h50 struct termios { struct
75 const struct termios *termios_p);
76 extern int tcgetattr(int fildes, struct termios *termios_p);
83 #include <termios.h>
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DTerminal.h16 struct termios;
121 std::unique_ptr<struct termios>
/freebsd-13-stable/lib/libutil/
H A Dlogin_tty.c40 #include <termios.h>

Completed in 214 milliseconds

1234567891011>>