HomeSort by relevance Sort by last modified time
    Searched full:tio (Results 1 - 25 of 32) sorted by null

1 2

  /external/openssh/
sshtty.c 71 struct termios tio; local
73 if (tcgetattr(fileno(stdin), &tio) == -1) {
78 _saved_tio = tio;
79 tio.c_iflag |= IGNPAR;
80 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF);
82 tio.c_iflag &= ~IUCLC;
84 tio.c_lflag &= ~(ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHONL);
86 tio.c_lflag &= ~IEXTEN;
88 tio.c_oflag &= ~OPOST;
89 tio.c_cc[VMIN] = 1
    [all...]
ttymodes.c 283 struct termios tio; local
302 debug("tty_make_modes: no fd or tio");
305 if (tcgetattr(fd, &tio) == -1) {
310 tio = *tiop;
313 baud = speed_to_baud(cfgetospeed(&tio));
316 baud = speed_to_baud(cfgetispeed(&tio));
323 put_arg(&buf, special_char_encode(tio.c_cc[NAME]));
327 put_arg(&buf, ((tio.FIELD & NAME) != 0));
351 struct termios tio; local
374 if (tcgetattr(fd, &tio) == -1)
    [all...]
serverloop.c 467 struct termios tio; local
489 tcgetattr(fdin, &tio) == 0 &&
490 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
    [all...]
mux.c 107 struct termios tio; member in struct:mux_session_confirm_ctx
434 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1)
    [all...]
channels.c 1642 struct termios tio; local
    [all...]
  /external/dropbear/
cli-chansession.c 110 struct termios tio; local
119 if (tcgetattr(STDIN_FILENO, &tio) == -1) {
124 cli_ses.saved_tio = tio;
126 tio.c_iflag |= IGNPAR;
127 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF);
129 tio.c_iflag &= ~IUCLC;
131 tio.c_lflag &= ~(ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHONL);
133 tio.c_lflag &= ~IEXTEN;
135 tio.c_oflag &= ~OPOST;
136 tio.c_cc[VMIN] = 1
166 struct termios tio; local
    [all...]
sshpty.c 191 struct termios tio;
219 if (tcgetattr(*ptyfd, &tio) < 0) {
223 tio.c_lflag |= (ECHO | ISIG | ICANON);
224 tio.c_oflag |= (OPOST | ONLCR);
225 tio.c_iflag |= ICRNL;
228 if (tcsetattr(*ptyfd, TCSANOW, &tio) < 0) {
  /frameworks/base/core/jni/
android_hardware_SerialPort.cpp 144 struct termios tio; local
145 if (tcgetattr(fd, &tio))
146 memset(&tio, 0, sizeof(tio));
148 tio.c_cflag = speed | CS8 | CLOCAL | CREAD;
150 tio.c_oflag &= ~OPOST;
151 tio.c_iflag = IGNPAR;
152 tio.c_lflag = 0; /* turn of CANON, ECHO*, etc */
154 tio.c_cc[VTIME] = 0;
155 tio.c_cc[VMIN] = 1
    [all...]
  /external/strace/
term.c 185 struct termio tio; local
257 if (!verbose(tcp) || umove(tcp, arg, &tio) < 0)
261 printxval(baud_options, tio.c_cflag & CBAUD, "B???");
263 (tio.c_oflag & OPOST) ? "" : "-",
264 (tio.c_lflag & ISIG) ? "" : "-",
265 (tio.c_lflag & ICANON) ? "" : "-",
266 (tio.c_lflag & ECHO) ? "" : "-");
270 (long) tio.c_iflag, (long) tio.c_oflag);
272 (long) tio.c_cflag, (long) tio.c_lflag)
    [all...]
  /external/openssh/openbsd-compat/
bsd-openpty.c 186 struct termios tio;
208 if (tcgetattr(*amaster, &tio) != -1) {
209 tio.c_lflag |= (ECHO | ISIG | ICANON);
210 tio.c_oflag |= (OPOST | ONLCR);
211 tio.c_iflag |= ICRNL;
212 tcsetattr(*amaster, TCSANOW, &tio);
  /device/moto/stingray/recovery/
masterclear_bp.c 111 struct termios tio; local
112 tcgetattr( cmd_engine_fd, &tio );
115 tio.c_lflag &= ~( ECHO | ECHOE | ECHOK | ECHONL ); // None ECHO mode
116 tio.c_lflag &= ~( ICANON | ISIG ); // raw data
119 tio.c_iflag = IGNBRK | IGNPAR; //work code
122 tio.c_oflag &= ~( OPOST ); // work code
125 tio.c_cflag |= ( CLOCAL | CREAD | CRTSCTS ); //enable receiver & hardware flow control
126 tio.c_cflag &= ~( CSIZE ); //disable bit mask for data bits
127 tio.c_cflag |= CS8; //set 8-bit characters
128 tio.c_cflag &= ~( PARENB ); //disable parity bit*
    [all...]
  /system/core/adb/
commandline.c 203 struct termios tio; local
205 if(tcgetattr(fd, &tio)) return;
208 tio.c_lflag = 0; /* disable CANON, ECHO*, etc */
211 tio.c_cc[VTIME] = 0;
212 tio.c_cc[VMIN] = 1;
214 tcsetattr(fd, TCSANOW, &tio);
    [all...]
  /external/apache-http/src/org/apache/commons/codec/language/
Metaphone.java 271 regionMatch(local,n,"TIO")) {
  /external/icu4c/test/intltest/
itrbnf.cpp     [all...]
  /ndk/sources/host-tools/sed-4.2.1/po/
eo.po 393 "?i tio estas libera programo; vidu la fonton por kopi-kondi?oj. Estas\n"
  /packages/apps/Calendar/res/values-sv/
strings.xml 115 <item msgid="6215158751728689832">"Kommer om runt tio minuter."</item>
  /external/webkit/Source/WebKit/gtk/po/
pt_BR.po 144 msgstr "Usuário e senha estão sendo pedidos pelo sítio %s"
    [all...]
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 
  /external/e2fsprogs/po/
ca.po     [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/testdata/
voice.rtpdump     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_enc/inc/
OMX_G711Enc_Utils.h 524 *frameType Tio save the frame type
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/gconv/
IBM935.so 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/gconv/
IBM935.so 
  /packages/inputmethods/LatinIME/dictionaries/
pt_br_wordlist.xml     [all...]

Completed in 1725 milliseconds

1 2