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

12345

/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dtermios.h1 #include <asm-generic/termios.h>
/external/kernel-headers/original/uapi/asm-arm64/asm/
H A Dtermios.h1 #include <asm-generic/termios.h>
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dtermios.h1 #include <asm-generic/termios.h>
/external/chromium_org/ui/ozone/platform/dri/
H A Dvirtual_terminal_manager.h8 #include <termios.h>
24 struct termios terminal_attributes_;
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dostermios.h17 struct termios { struct
30 int tcgetattr(int fd, struct termios* termios_p);
31 int tcsetattr(int fd, int optional_actions, const struct termios* termios_p);
37 #include <termios.h>
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dcfgetispeed.c16 speed_t cfgetispeed(const struct termios *termios_p) {
H A Dcfgetospeed.c16 speed_t cfgetospeed(const struct termios *termios_p) {
H A Dcfsetispeed.c15 int cfsetispeed(struct termios *termios_p, speed_t speed) {
H A Dcfsetospeed.c16 int cfsetospeed(struct termios *termios_p, speed_t speed) {
H A Dtcgetattr.c17 int tcgetattr(int fd, struct termios* termios_p) {
H A Dtcsetattr.c16 int tcsetattr(int fd, int optional_actions, const struct termios* termios_p) {
H A Dcfsetspeed.c16 int cfsetspeed(struct termios *termios_p, speed_t speed) {
/external/compiler-rt/test/msan/Linux/
H A Dtcgetattr.cc7 #include <termios.h>
14 struct termios t;
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/include/sys/
H A Dtermios.h112 struct termios { struct
127 speed_t cfgetispeed(const struct termios* termios_p);
128 speed_t cfgetospeed(const struct termios* termios_p);
129 int cfsetispeed(struct termios* termios_p, speed_t speed);
130 int cfsetospeed(struct termios* termios_p, speed_t speed);
131 int cfsetspeed(struct termios* termios_p, speed_t speed);
136 int tcgetattr(int fd, struct termios* termios_p);
138 int tcsetattr(int fd, int optional_actions, const struct termios* termios_p);
/external/qemu/distrib/sdl-1.2.15/src/video/wscons/
H A DSDL_wsconsvideo.h28 #include <termios.h>
72 struct termios saved_tty;
/external/kernel-headers/original/uapi/linux/
H A Dtermios.h5 #include <asm/termios.h>
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dconio_posix.cc10 #include <termios.h>
14 static termios oldt, newt;
/external/lldb/include/lldb/Host/
H A DTerminal.h16 struct termios;
176 std::unique_ptr<struct termios> m_termios_ap; ///< Cached terminal state information.
/external/lldb/tools/debugserver/source/
H A DTTYState.h17 #include <termios.h>
39 struct termios m_ttystate;
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Dtty_node.h39 virtual Error Tcgetattr(struct termios* termios_p);
41 const struct termios* termios_p);
54 struct termios termios_;
/external/lldb/test/pexpect-2.4/examples/
H A Dscript.py22 import signal, fcntl, termios, struct namespace
84 if 'TIOCGWINSZ' in dir(termios):
85 TIOCGWINSZ = termios.TIOCGWINSZ
/external/chromium_org/tools/
H A Dsort-headers.py26 import termios namespace
29 old_settings = termios.tcgetattr(fd)
35 termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
/external/chromium_org/third_party/webrtc/modules/audio_device/
H A Daudio_device_utility.cc58 #include <termios.h> // tcgetattr
69 struct termios oldt, newt;
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsvideo.h28 #include <termios.h>
52 struct termios saved_kbd_termios;
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A Duserial_linux.c28 #include <termios.h>
950 struct termios termios; local
1074 tcgetattr(linux_cb.sock, &termios);
1076 termios.c_cflag &= ~(CSIZE | PARENB);
1077 termios.c_cflag = CLOCAL|CREAD|data_bits|stop_bits|parity;
1079 termios.c_cflag |= IGNPAR;
1080 // termios.c_cflag &= ~CRTSCTS;
1081 termios.c_oflag = 0;
1082 termios
1294 struct termios termios; local
[all...]

Completed in 632 milliseconds

12345