Searched defs:termios (Results 1 - 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dgetpass.py63 old = termios.tcgetattr(fd) # a copy to save
65 new[3] &= ~termios.ECHO # 3 == 'lflags'
66 tcsetattr_flags = termios.TCSAFLUSH
67 if hasattr(termios, 'TCSASOFT'):
68 tcsetattr_flags |= termios.TCSASOFT
70 termios.tcsetattr(fd, tcsetattr_flags, new)
73 termios.tcsetattr(fd, tcsetattr_flags, old)
75 except termios.error, e:
162 import termios namespace
163 # it's possible there is an incompatible termios fro
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_ioctl.py6 termios = import_module('termios') variable
7 get_attribute(termios, 'TIOCGPGRP') #Can't run tests without this feature
15 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
34 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
51 r = fcntl.ioctl(tty, termios.TIOCGPGRP, buf, 1)
73 if termios.TIOCSWINSZ < 0:
74 set_winsz_opcode_maybe_neg = termios.TIOCSWINSZ
75 set_winsz_opcode_pos = termios.TIOCSWINSZ & 0xffffffffL
77 set_winsz_opcode_pos = termios
[all...]
/device/linaro/bootloader/edk2/StdLib/Include/sys/
H A Dtermios.h42 * @(#)termios.h 8.3 (Berkeley) 3/28/94
43 NetBSD: termios.h,v 1.29 2005/12/11 12:25:21 christos Exp
159 struct termios { struct
170 * Commands passed to tcsetattr() for setting the termios structure.
222 Extracts the input baud rate from the termios structure pointed to by the
225 @param[in] pTermios A pointer to the termios structure from which to extract
229 in the termios structure, without interpretation.
231 speed_t cfgetispeed (const struct termios *);
235 Extracts the output baud rate from the termios structure pointed to by the
238 @param[in] pTermios A pointer to the termios structur
[all...]

Completed in 37 milliseconds