HomeSort by relevance Sort by last modified time
    Searched defs:termios (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/chromium_org/build/android/
surface_stats.py 48 import fcntl, termios, struct namespace
52 fcntl.ioctl(0, termios.TIOCGWINSZ,
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
ostermios.h 10 #include <termios.h>
21 struct termios { struct
35 int tcgetattr(int fd,struct termios *termios_p);
36 int tcsetattr(int fd,int optional_actions,const struct termios *termios_p);
  /external/chromium_org/tools/
sort-headers.py 26 import termios namespace
29 old_settings = termios.tcgetattr(fd)
35 termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
getpass.py 63 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 from th
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
getpass.py 63 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 from th
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
platforminfo.py 108 import termios namespace
109 packed = fcntl.ioctl(sys.stderr.fileno(), termios.TIOCGWINSZ, '\0' * 8)
  /hardware/broadcom/libbt/src/
userial_vendor.c 30 #include <termios.h>
62 struct termios termios; /* serial terminal of BT port */ member in struct:__anon32641
238 tcgetattr(vnd_userial.fd, &vnd_userial.termios);
239 cfmakeraw(&vnd_userial.termios);
240 vnd_userial.termios.c_cflag |= (CRTSCTS | stop_bits);
241 tcsetattr(vnd_userial.fd, TCSANOW, &vnd_userial.termios);
244 tcsetattr(vnd_userial.fd, TCSANOW, &vnd_userial.termios);
249 cfsetospeed(&vnd_userial.termios, baud);
250 cfsetispeed(&vnd_userial.termios, baud)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ioctl.py 6 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.TIOCSWINS
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ioctl.py 6 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.TIOCSWINS
    [all...]
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 17 import termios namespace
155 attr = termios.tcgetattr(fd)
156 attr[3] = attr[3] & ~termios.ECHO
157 termios.tcsetattr(fd, termios.TCSANOW, attr)
  /external/e2fsprogs/e2fsck/
util.c 27 #include <termios.h>
142 struct termios termios, tmp; local
144 tcgetattr (0, &termios);
145 tmp = termios;
165 tcsetattr (0, TCSANOW, &termios);
191 tcsetattr (0, TCSANOW, &termios);
  /external/chromium_org/third_party/pexpect/
pexpect.py 78 import termios namespace
766 attr = termios.tcgetattr(self.child_fd)
767 if attr[3] & termios.ECHO:
803 attr = termios.tcgetattr(self.child_fd)
805 attr[3] = attr[3] | termios.ECHO
807 attr[3] = attr[3] & ~termios.ECHO
811 termios.tcsetattr(self.child_fd, termios.TCSANOW, attr)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/include/sys/
termios.h 107 struct termios { struct
124 int tcgetattr(int fd, struct termios *termios_p);
125 int tcsetattr(int fd, int optional_actions, const struct termios *termios_p);
  /bionic/libc/kernel/arch-arm/asm/
termbits.h 26 struct termios { struct
  /bionic/libc/kernel/arch-mips/asm/
termbits.h 27 struct termios { struct
  /bionic/libc/kernel/arch-x86/asm/
termbits.h 27 struct termios { struct
  /development/ndk/platforms/android-3/arch-arm/include/asm/
termbits.h 20 struct termios { struct
  /development/ndk/platforms/android-9/arch-mips/include/asm/
termbits.h 27 struct termios { struct
  /development/ndk/platforms/android-9/arch-x86/include/asm/
termbits.h 27 struct termios { struct
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags.py 403 # Importing termios will fail on non-unix platforms.
404 import termios namespace
406 termios = None variable
534 if (not sys.stdout.isatty()) or (termios is None) or (fcntl is None):
537 data = fcntl.ioctl(sys.stdout, termios.TIOCGWINSZ, '1234')
    [all...]
  /external/chromium_org/third_party/python_gflags/
gflags.py 403 # Importing termios will fail on non-unix platforms.
404 import termios namespace
406 termios = None variable
534 if (not sys.stdout.isatty()) or (termios is None) or (fcntl is None):
537 data = fcntl.ioctl(sys.stdout, termios.TIOCGWINSZ, '1234')
    [all...]
  /external/grub/grub/
asmstub.c 43 #include <termios.h>
1105 struct termios termios; local
1131 /* Get the termios parameters. */
1132 if (tcgetattr (serial_fd, &termios))
1136 cfmakeraw (&termios);
1143 cfsetispeed (&termios, termios_speed);
1144 cfsetospeed (&termios, termios_speed);
1147 termios.c_cflag &= ~CSIZE;
1151 termios.c_cflag |= CS5
    [all...]
  /external/kernel-headers/original/asm-arm/
termbits.h 9 struct termios { struct
  /external/kernel-headers/original/asm-mips/
termbits.h 24 struct termios { struct
  /external/kernel-headers/original/asm-x86/
termbits.h 11 struct termios { struct

Completed in 565 milliseconds

1 2 3