| /openbmc/openbmc/poky/scripts/ |
| H A D | oepydevshell-internal.py | 13 import termios 21 old = termios.tcgetattr(fd) 22 old[3] = old[3] | termios.ECHO | termios.ICANON 23 termios.tcsetattr(fd, termios.TCSADRAIN, old) 26 old = termios.tcgetattr(fd) 27 old[3] = old[3] &~ termios.ECHO &~ termios.ICANON 28 termios.tcsetattr(fd, termios.TCSADRAIN, old)
|
| /openbmc/openbmc/poky/meta/classes-global/ |
| H A D | devshell.bbclass | 49 import termios 55 old = termios.tcgetattr(fd) 56 old[3] = old[3] &~ termios.ECHO &~ termios.ICANON 57 # &~ termios.ISIG 58 termios.tcsetattr(fd, termios.TCSADRAIN, old)
|
| /openbmc/obmc-console/ |
| H A D | console-client.c | 62 struct termios orig_termios; 188 struct termios termios; in client_tty_init() local 199 rc = tcgetattr(client->fd_in, &termios); in client_tty_init() 204 memcpy(&client->orig_termios, &termios, sizeof(client->orig_termios)); in client_tty_init() 205 cfmakeraw(&termios); in client_tty_init() 207 rc = tcsetattr(client->fd_in, TCSANOW, &termios); in client_tty_init()
|
| H A D | tty-handler.c | 197 struct termios term_options; in set_terminal_baud() 219 struct termios term_options; in make_terminal_raw()
|
| H A D | console-server.c | 334 struct termios termios; in tty_init_termios() local 337 rc = tcgetattr(server->tty.fd, &termios); in tty_init_termios() 344 if (cfsetspeed(&termios, server->tty.uart.baud) < 0) { in tty_init_termios() 352 cfmakeraw(&termios); in tty_init_termios() 354 rc = tcsetattr(server->tty.fd, TCSANOW, &termios); in tty_init_termios()
|
| /openbmc/openbmc/poky/meta/recipes-devtools/expect/expect/ |
| H A D | expect-configure-c99.patch | 105 PTY_TYPE=termios 109 # include <termios.h> 113 struct termios tmp; 118 PTY_TYPE=termios 122 #include <termios.h> 130 #include <termios.h>
|
| H A D | 0001-configure.in.patch | 56 + PTY_TYPE=termios 67 + PTY_TYPE=termios 80 AC_MSG_CHECKING([if TIOCGWINSZ in termios.h])
|
| /openbmc/openbmc/meta-raspberrypi/recipes-connectivity/bluez5/bluez5/ |
| H A D | 0002-bcm43xx-The-UART-speed-must-be-reset-after-the-firmw.patch | 17 @@ -350,11 +350,8 @@ int bcm43xx_init(int fd, int def_speed, int speed, struct termios *ti, 30 @@ -364,6 +361,7 @@ int bcm43xx_init(int fd, int def_speed, int speed, struct termios *ti,
|
| /openbmc/u-boot/tools/gdb/ |
| H A D | serial.c | 18 static struct termios tios = { BRKINT, 0, B115200|CS8|CREAD, 0, { 0 } }; 20 static struct termios tios = { BRKINT, 0, B115200|CS8|CREAD, 0, 0 };
|
| /openbmc/openbmc/poky/meta/recipes-bsp/lrzsz/lrzsz-0.12.20/ |
| H A D | lrzsz-check-locale.h.patch | 23 AC_CHECK_HEADERS(termios.h sys/termios.h termio.h sys/termio.h sgtty.h)
|
| /openbmc/qemu/linux-user/ |
| H A D | semihost.c | 29 struct termios old_tio, new_tio; in qemu_semihosting_console_read()
|
| /openbmc/openbmc/poky/meta/recipes-bsp/setserial/setserial/ |
| H A D | add_stdlib.patch | 16 #include <termios.h>
|
| H A D | 0001-setserial.c-Add-needed-system-headers-for-ioctl-and-.patch | 25 #include <termios.h>
|
| /openbmc/openbmc/poky/bitbake/lib/bb/ui/ |
| H A D | knotty.py | 141 cr = struct.unpack('hh', fcntl.ioctl(fd, self.termios.TIOCGWINSZ, '1234')) 179 import termios 181 self.termios = termios 184 self.stdinbackup = termios.tcgetattr(fd) 186 new[3] = new[3] & ~termios.ECHO 187 termios.tcsetattr(fd, termios.TCSADRAIN, new) 347 self.termios.tcsetattr(fd, self.termios.TCSADRAIN, self.stdinbackup)
|
| /openbmc/phosphor-modbus/rtu/modbus/ |
| H A D | modbus.cpp | 34 static auto applyParitySettings(Parity parity, termios& tty) -> bool in applyParitySettings() 67 termios tty; in setProperties()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/serial-utils/serial-forward/ |
| H A D | 0001-correct-the-typo-in-include-file-name-string.h.patch | 19 #include <termios.h>
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/gpm/gpm/ |
| H A D | 0001-Avoid-shadowing-ncurses-functions.patch | 85 struct termios it; 94 struct termios it; 133 struct termios it; 142 struct termios it;
|
| /openbmc/openbmc/poky/bitbake/lib/progressbar/ |
| H A D | progressbar.py | 37 import termios 185 h, w = array('h', ioctl(self.fd, termios.TIOCGWINSZ, '\0' * 8))[:2]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/influxdb/influxdb/ |
| H A D | 0001-patch-term-module-for-mips-ispeed-ospeed-termios-abs.patch | 4 Subject: [PATCH] patch term module for mips ispeed/ospeed termios absense
|
| /openbmc/openbmc/poky/meta/recipes-support/vim/files/ |
| H A D | disable_acl_header_check.patch | 21 sys/systeminfo.h locale.h sys/stream.h termios.h \
|
| /openbmc/openbmc/poky/meta/site/ |
| H A D | common-linux | 66 tcl_cv_api_serial=${tcl_cv_api_serial=termios}
|
| /openbmc/ipmitool/ |
| H A D | configure.ac | 449 dnl look for termios header file 450 AC_CHECK_HEADER([termios.h], 451 [AC_DEFINE(HAVE_TERMIOS_H, [1], [Define to 1 if you have <termios.h>.])], 452 [AC_CHECK_HEADER([sys/termios.h], 453 [AC_DEFINE(HAVE_SYS_TERMIOS_H, [1], [Define to 1 if you have <sys/termios.h>.])], 454 [echo "** Unable to find termios header file."])])
|
| /openbmc/ipmitool/lib/ |
| H A D | ipmi_isol.c | 54 static struct termios _saved_tio; 303 struct termios tio; in enter_raw_mode()
|
| H A D | ipmi_tsol.c | 72 static struct termios _saved_tio; 214 struct termios tio; in enter_raw_mode()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/influxdb/ |
| H A D | influxdb_1.8.10.bb | 24 SRC_URI:append:mipsarch = " file://0001-patch-term-module-for-mips-ispeed-ospeed-termios-abs.patch;…
|