Home
last modified time | relevance | path

Searched refs:termios (Results 1 – 25 of 45) sorted by relevance

12

/openbmc/openbmc/poky/scripts/
H A Doepydevshell-internal.py13 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 Ddevshell.bbclass49 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 Dconsole-client.c62 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 Dtty-handler.c197 struct termios term_options; in set_terminal_baud()
219 struct termios term_options; in make_terminal_raw()
H A Dconsole-server.c334 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 Dexpect-configure-c99.patch105 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 D0001-configure.in.patch56 + 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 D0002-bcm43xx-The-UART-speed-must-be-reset-after-the-firmw.patch17 @@ -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 Dserial.c18 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 Dlrzsz-check-locale.h.patch23 AC_CHECK_HEADERS(termios.h sys/termios.h termio.h sys/termio.h sgtty.h)
/openbmc/qemu/linux-user/
H A Dsemihost.c29 struct termios old_tio, new_tio; in qemu_semihosting_console_read()
/openbmc/openbmc/poky/meta/recipes-bsp/setserial/setserial/
H A Dadd_stdlib.patch16 #include <termios.h>
H A D0001-setserial.c-Add-needed-system-headers-for-ioctl-and-.patch25 #include <termios.h>
/openbmc/openbmc/poky/bitbake/lib/bb/ui/
H A Dknotty.py141 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 Dmodbus.cpp34 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 D0001-correct-the-typo-in-include-file-name-string.h.patch19 #include <termios.h>
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/gpm/gpm/
H A D0001-Avoid-shadowing-ncurses-functions.patch85 struct termios it;
94 struct termios it;
133 struct termios it;
142 struct termios it;
/openbmc/openbmc/poky/bitbake/lib/progressbar/
H A Dprogressbar.py37 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 D0001-patch-term-module-for-mips-ispeed-ospeed-termios-abs.patch4 Subject: [PATCH] patch term module for mips ispeed/ospeed termios absense
/openbmc/openbmc/poky/meta/recipes-support/vim/files/
H A Ddisable_acl_header_check.patch21 sys/systeminfo.h locale.h sys/stream.h termios.h \
/openbmc/openbmc/poky/meta/site/
H A Dcommon-linux66 tcl_cv_api_serial=${tcl_cv_api_serial=termios}
/openbmc/ipmitool/
H A Dconfigure.ac449 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 Dipmi_isol.c54 static struct termios _saved_tio;
303 struct termios tio; in enter_raw_mode()
H A Dipmi_tsol.c72 static struct termios _saved_tio;
214 struct termios tio; in enter_raw_mode()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/influxdb/
H A Dinfluxdb_1.8.10.bb24 SRC_URI:append:mipsarch = " file://0001-patch-term-module-for-mips-ispeed-ospeed-termios-abs.patch;…

12