Searched refs:tty (Results 1 – 13 of 13) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_ioctl.py | 10 tty = open("/dev/tty", "r") variable 15 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ") 16 tty.close() 21 del tty, r, rpgrp 33 tty = open("/dev/tty", "r") 34 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ") 50 with open("/dev/tty", "r") as tty: 51 r = fcntl.ioctl(tty, termios.TIOCGPGRP, buf, 1)
|
D | test_sundry.py | 80 import tty # not available on Windows
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | pty.py | 11 import tty 163 mode = tty.tcgetattr(STDIN_FILENO) 164 tty.setraw(STDIN_FILENO) 166 except tty.error: # This is the same as termios.error 172 tty.tcsetattr(STDIN_FILENO, tty.TCSAFLUSH, mode)
|
D | getpass.py | 42 tty = None 46 tty = os.fdopen(fd, 'w+', 1) 47 input = tty 49 stream = tty 82 del input, tty # clean up unused file objects before blocking
|
D | pydoc.py | 1380 import tty 1382 old = tty.tcgetattr(fd) 1383 tty.setcbreak(fd) 1386 tty = None 1411 if tty: 1412 tty.tcsetattr(fd, tty.TCSAFLUSH, old)
|
/device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/ |
D | EmuThunk.c | 63 struct termios tty; in SecConfigStdIn() local 68 tcgetattr (STDIN_FILENO, &tty); in SecConfigStdIn() 69 tty.c_lflag &= ~(ICANON | ECHO); in SecConfigStdIn() 70 tcsetattr (STDIN_FILENO, TCSANOW, &tty); in SecConfigStdIn()
|
/device/google/wahoo/ |
D | init.power.sh | 49 if [[ $(getprop ro.debuggable) == "1" && ! -e /sys/class/tty/ttyMSM0 ]]
|
/device/google/marlin/ |
D | init.power.sh | 43 if [[ $(getprop ro.debuggable) == "1" && ! -e /sys/class/tty/ttyHSL0 ]]
|
D | init.common.diag.rc.userdebug | 79 write /sys/class/android_usb/android0/f_serial/transports char_bridge,tty 93 write /sys/class/android_usb/android0/f_serial/transports char_bridge,tty
|
/device/google/cuttlefish/shared/sepolicy/ |
D | init.te | 1 # /dev/tty* I/O. Needed for /dev/ttyS0
|
/device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/ |
D | subr_prf.c | 73 struct tty *tty; member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/ |
D | pydoc.py | 1456 import tty 1458 old = tty.tcgetattr(fd) 1459 tty.setcbreak(fd) 1462 tty = None 1493 if tty: 1494 tty.tcsetattr(fd, tty.TCSAFLUSH, old)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/ |
D | pydoc.py | 1384 import tty 1386 old = tty.tcgetattr(fd) 1387 tty.setcbreak(fd) 1390 tty = None 1415 if tty: 1416 tty.tcsetattr(fd, tty.TCSAFLUSH, old)
|