/external/chromium_org/tools/ |
sort-headers.py | 27 import tty namespace 32 tty.setraw(sys.stdin.fileno())
|
/external/qemu/distrib/sdl-1.2.15/src/video/wscons/ |
SDL_wsconsevents.c | 43 struct termios tty; local 55 tty = private->saved_tty; 56 tty.c_iflag = IGNPAR | IGNBRK; 57 tty.c_oflag = 0; 58 tty.c_cflag = CREAD | CS8; 59 tty.c_lflag = 0; 60 tty.c_cc[VTIME] = 0; 61 tty.c_cc[VMIN] = 1; 62 cfsetispeed(&tty, 9600); 63 cfsetospeed(&tty, 9600) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pty.py | 11 import tty namespace 69 return (fd, '/dev/tty' + x + y) 121 # Explicitly open the tty to make it become a controlling tty. 169 mode = tty.tcgetattr(STDIN_FILENO) 170 tty.setraw(STDIN_FILENO) 172 except tty.error: # This is the same as termios.error 178 tty.tcsetattr(STDIN_FILENO, tty.TCSAFLUSH, mode)
|
pydoc.py | 1399 import tty namespace [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pty.py | 11 import tty namespace 69 return (fd, '/dev/tty' + x + y) 121 # Explicitly open the tty to make it become a controlling tty. 169 mode = tty.tcgetattr(STDIN_FILENO) 170 tty.setraw(STDIN_FILENO) 172 except tty.error: # This is the same as termios.error 178 tty.tcsetattr(STDIN_FILENO, tty.TCSAFLUSH, mode)
|
pydoc.py | 1399 import tty namespace [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ioctl.py | 10 tty = open("/dev/tty", "r") variable 12 raise unittest.SkipTest("Unable to open /dev/tty") 15 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ") 16 tty.close() 20 "are attached to /dev/tty") 21 del tty, r, rpgrp 33 tty = open("/dev/tty", "r") 34 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " " [all...] |
test_sundry.py | 84 import tty # not available on Windows namespace 87 print "skipping tty"
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ioctl.py | 10 tty = open("/dev/tty", "r") variable 12 raise unittest.SkipTest("Unable to open /dev/tty") 15 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ") 16 tty.close() 20 "are attached to /dev/tty") 21 del tty, r, rpgrp 33 tty = open("/dev/tty", "r") 34 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " " [all...] |
test_sundry.py | 84 import tty # not available on Windows namespace 87 print "skipping tty"
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
DemoStatusIcons.java | 99 String tty = args.getString("tty"); local 100 if (tty != null) { 101 int iconId = tty.equals("show") ? R.drawable.stat_sys_tty_mode 103 updateSlot("tty", null, iconId);
|
/external/chromium_org/third_party/openssl/openssl/crypto/des/ |
read_pwd.c | 148 #define TTY_get(tty,data) tcgetattr(tty,data) 149 #define TTY_set(tty,data) tcsetattr(tty,TCSANOW,data) 156 #define TTY_get(tty,data) ioctl(tty,TCGETA,data) 157 #define TTY_set(tty,data) ioctl(tty,TCSETA,data) 164 #define TTY_get(tty,data) ioctl(tty,TIOCGETP,data 279 static FILE *tty; local [all...] |
/external/openssl/crypto/des/ |
read_pwd.c | 148 #define TTY_get(tty,data) tcgetattr(tty,data) 149 #define TTY_set(tty,data) tcsetattr(tty,TCSANOW,data) 156 #define TTY_get(tty,data) ioctl(tty,TCGETA,data) 157 #define TTY_set(tty,data) ioctl(tty,TCSETA,data) 164 #define TTY_get(tty,data) ioctl(tty,TIOCGETP,data 279 static FILE *tty; local [all...] |
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
p2p-nfc.py | 368 import sys, tty, termios namespace 378 import sys, tty, termios, select namespace 384 tty.setraw(fd)
|
/external/chromium_org/third_party/pexpect/ |
pexpect.py | 33 the normal stdio streams. For example, ssh reads input directly from the TTY 77 import tty namespace 319 of bytes that Pexpect will try to read from a TTY at one time. Setting 645 """This makes the pseudo-terminal the controlling tty. This should be 651 # Disconnect from controlling tty. Harmless if not already connected. 653 fd = os.open("/dev/tty", os.O_RDWR | os.O_NOCTTY) 662 # Verify we are disconnected from controlling tty 665 fd = os.open("/dev/tty", os.O_RDWR | os.O_NOCTTY) 669 'controlling tty. It is still possible to open /dev/tty.' [all...] |
/external/clang/test/Analysis/ |
taint-tester.c | 59 int tty = xy.y; // expected-warning + {{tainted}} local
|
/external/lldb/test/pexpect-2.4/ |
pexpect.py | 76 import tty namespace 304 of bytes that Pexpect will try to read from a TTY at one time. Setting 609 """This makes the pseudo-terminal the controlling tty. This should be 615 # Disconnect from controlling tty if still connected. 617 fd = os.open("/dev/tty", os.O_RDWR | os.O_NOCTTY); 626 # Verify we are disconnected from controlling tty 628 fd = os.open("/dev/tty", os.O_RDWR | os.O_NOCTTY); 631 raise ExceptionPexpect, "Error! We are not disconnected from a controlling tty." 633 # Good! We are disconnected from a controlling tty. 643 # Verify we now have a controlling tty [all...] |
/external/ppp/pppd/ |
auth.c | 1535 char *tty; local [all...] |
/external/qemu/ |
qemu-char.c | 805 struct termios tty; local 807 tty = oldtty; 809 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP 811 tty.c_oflag |= OPOST; 812 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN); 813 tty.c_cflag &= ~(CSIZE|PARENB); 814 tty.c_cflag |= CS8; 815 tty.c_cc[VMIN] = 1; 816 tty.c_cc[VTIME] = 0; 820 tty.c_lflag &= ~ISIG 1044 struct termios tty; local 1087 struct termios tty; local [all...] |
/development/ndk/platforms/android-3/include/linux/ |
wanrouter.h | 162 char tty; member in struct:wandev_conf
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/ |
wanrouter.h | 224 char tty; /* Create a fake tty device */ member in struct:wandev_conf 225 unsigned tty_major; /* Major number for wanpipe tty device */ 226 unsigned tty_minor; /* Minor number for wanpipe tty device */ 227 unsigned tty_mode; /* TTY operation mode SYNC or ASYNC */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
wanrouter.h | 224 char tty; /* Create a fake tty device */ member in struct:wandev_conf 225 unsigned tty_major; /* Major number for wanpipe tty device */ 226 unsigned tty_minor; /* Minor number for wanpipe tty device */ 227 unsigned tty_mode; /* TTY operation mode SYNC or ASYNC */
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/ |
wanrouter.h | 162 char tty; member in struct:wandev_conf
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/ |
wanrouter.h | 162 char tty; member in struct:wandev_conf
|
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/ |
wanrouter.h | 162 char tty; member in struct:wandev_conf
|