/external/openssh/ |
D | sshtty.c | 71 struct termios tio; in enter_raw_mode() local 73 if (tcgetattr(fileno(stdin), &tio) == -1) { in enter_raw_mode() 78 _saved_tio = tio; in enter_raw_mode() 79 tio.c_iflag |= IGNPAR; in enter_raw_mode() 80 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF); in enter_raw_mode() 82 tio.c_iflag &= ~IUCLC; in enter_raw_mode() 84 tio.c_lflag &= ~(ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHONL); in enter_raw_mode() 86 tio.c_lflag &= ~IEXTEN; in enter_raw_mode() 88 tio.c_oflag &= ~OPOST; in enter_raw_mode() 89 tio.c_cc[VMIN] = 1; in enter_raw_mode() [all …]
|
D | ttymodes.c | 281 struct termios tio; in ssh_tty_make_modes() local 293 if (tcgetattr(fd, &tio) == -1) { in ssh_tty_make_modes() 298 tio = *tiop; in ssh_tty_make_modes() 301 obaud = speed_to_baud(cfgetospeed(&tio)); in ssh_tty_make_modes() 302 ibaud = speed_to_baud(cfgetispeed(&tio)); in ssh_tty_make_modes() 313 special_char_encode(tio.c_cc[NAME]))) != 0) \ in ssh_tty_make_modes() 322 (r = sshbuf_put_u32(buf, ((tio.FIELD & NAME) != 0))) != 0) \ in ssh_tty_make_modes() 345 struct termios tio; in ssh_tty_parse_modes() local 367 if (tcgetattr(fd, &tio) == -1) { in ssh_tty_parse_modes() 384 cfsetispeed(&tio, baud_to_speed(baud)) == -1) in ssh_tty_parse_modes() [all …]
|
D | mux.c | 88 struct termios tio; member 454 if (cctx->want_tty && tcgetattr(new_fd[0], &cctx->tio) == -1) in mux_master_process_new_session() 1423 cctx->term, &cctx->tio, c->rfd, cctx->cmd, cctx->env); in mux_session_confirm()
|
D | channels.c | 1997 struct termios tio; local 2062 if (tcgetattr(c->wfd, &tio) == 0 && 2063 !(tio.c_lflag & ECHO) && (tio.c_lflag & ICANON)) {
|
/external/strace/ |
D | term.c | 75 struct termio tio; in decode_termio() local 79 if (umove_or_printaddr(tcp, addr, &tio)) in decode_termio() 83 printxval(baud_options, tio.c_cflag & CBAUD, "B???"); in decode_termio() 85 (tio.c_oflag & OPOST) ? "" : "-", in decode_termio() 86 (tio.c_lflag & ISIG) ? "" : "-", in decode_termio() 87 (tio.c_lflag & ICANON) ? "" : "-", in decode_termio() 88 (tio.c_lflag & ECHO) ? "" : "-"); in decode_termio() 92 (long) tio.c_iflag, (long) tio.c_oflag); in decode_termio() 94 (long) tio.c_cflag, (long) tio.c_lflag); in decode_termio() 95 tprintf("c_line=%u, ", tio.c_line); in decode_termio() [all …]
|
/external/libwebsockets/minimal-examples/raw/minimal-raw-serial/ |
D | minimal-raw-file.c | 56 struct termios tio; in callback_raw_test() local 82 memset(&tio, 0, sizeof tio); in callback_raw_test() 83 if (tcgetattr(vhd->filefd, &tio)) { in callback_raw_test() 89 cfsetispeed(&tio, B115200); in callback_raw_test() 90 cfsetospeed(&tio, B115200); in callback_raw_test() 92 tio.c_lflag &= ~(ISIG | ICANON | IEXTEN | ECHO | in callback_raw_test() 97 tio.c_iflag &= ~(INLCR | IGNBRK | IGNPAR | IGNCR | ICRNL | in callback_raw_test() 103 tio.c_oflag = 0; in callback_raw_test() 105 tio.c_cc[VMIN] = 1; in callback_raw_test() 106 tio.c_cc[VTIME] = 0; in callback_raw_test() [all …]
|
/external/openssh/openbsd-compat/ |
D | bsd-openpty.c | 172 struct termios tio; in openpty() 194 if (tcgetattr(*amaster, &tio) != -1) { in openpty() 195 tio.c_lflag |= (ECHO | ISIG | ICANON); in openpty() 196 tio.c_oflag |= (OPOST | ONLCR); in openpty() 197 tio.c_iflag |= ICRNL; in openpty() 198 tcsetattr(*amaster, TCSANOW, &tio); in openpty()
|
/external/toybox/toys/net/ |
D | microcom.c | 38 struct termios tio; in microcom_main() local 49 memcpy(&tio, &TT.old_fd, sizeof(struct termios)); in microcom_main() 50 cfmakeraw(&tio); in microcom_main() 51 xsetspeed(&tio, TT.s); in microcom_main() 52 if (tcsetattr(TT.fd, TCSAFLUSH, &tio)) perror_exit("set speed"); in microcom_main()
|
/external/igt-gpu-tools/tests/ |
D | testdisplay.c | 581 struct termios tio; in set_termio_mode() local 591 tio = saved_tio; in set_termio_mode() 592 tio.c_lflag &= ~(ICANON | ECHO); in set_termio_mode() 593 tcsetattr(tio_fd, TCSANOW, &tio); in set_termio_mode()
|
/external/toybox/lib/ |
D | tty.c | 64 void xsetspeed(struct termios *tio, int speed) in xsetspeed() argument 74 cfsetspeed(tio, i+1+4081*(i>15)); in xsetspeed()
|
D | lib.h | 340 void xsetspeed(struct termios *tio, int speed);
|
/external/icu/icu4c/source/data/rbnf/ |
D | sv.txt | 42 "10: tio;", 81 "10: tio;",
|
/external/igt-gpu-tools/tools/ |
D | intel_dp_compliance.c | 992 struct termios tio; in set_termio_mode() local 1003 tio = saved_tio; in set_termio_mode() 1004 tio.c_lflag &= ~(ICANON | ECHO); in set_termio_mode() 1005 tcsetattr(tio_fd, TCSANOW, &tio); in set_termio_mode()
|
/external/libcups/desktop/ |
D | cups.desktop.in | 51 Comment[pt-PT]=Interface sítio do CUPS
|
/external/toybox/scripts/ |
D | mcm-buildall.sh | 165 int forkpty(int *pm, char *name, const struct termios *tio, const struct winsize *ws)
|
/external/python/cpython3/Lib/test/ |
D | test_tarfile.py | 235 tio = io.TextIOWrapper(io.BytesIO(), 'ascii', newline='\n') 236 with support.swap_attr(sys, 'stdout', tio): 238 out = tio.detach().getvalue() 272 tio = io.TextIOWrapper(io.BytesIO(), 'ascii', newline='\n') 273 with support.swap_attr(sys, 'stdout', tio): 275 out = tio.detach().getvalue() 296 tio = io.TextIOWrapper(io.BytesIO(), 'ascii', newline='\n') 301 with support.swap_attr(sys, 'stdout', tio): 303 out = tio.detach().getvalue()
|
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/ |
D | internal_baseEnglishToIpa.txt | 86 tio > ʃə ; # nation
|
/external/rust/crates/csv/examples/data/bench/ |
D | worldcitiespop.csv | 126 br,sitio joao vida leal filho,Sítio João Vida Leal Filho,18,,-23.505089,-50.032873 868 br,sitio sueli t. krause,Sítio Sueli T. Krause,26,,-26.1425,-49.3418 911 br,sitio roberto nalama,Sítio Roberto Nalama,18,,-25.896229,-49.400656 1337 br,sitio maria a. b. perico,Sítio Maria A. B. Périco,18,,-23.7135,-49.9172 1493 br,sitio renerio leite,Sítio Renério Leite,18,,-23.821,-50.1948 2282 br,sitio brigida,Sítio Brigida,18,,-23.813063,-50.072618 2394 br,sitio guarani,Sítio Guarani,06,,-6.783333,-39.466667 2503 br,sitio manoel tomaz,Sítio Manoel Tomaz,18,,-23.8591,-50.8221 2535 br,sitio donato cecilio,Sítio Donato Cecílio,18,,-23.8655,-50.9737 3284 br,sitio maria r. portela,Sítio Maria R. Portela,18,,-26.168212,-49.554851 [all …]
|
/external/icu/icu4c/source/data/misc/ |
D | likelySubtags.txt | 1199 tio{"tio_Latn_ZZ"}
|
D | langInfo.txt | 2095 "tio","Latn","ZZ",
|
/external/hyphenation-patterns/en-US/ |
D | hyph-en-us.pat.txt | 3901 1tio
|
D | hyph-en-us.hyp.txt | 531 ir-ra-tio-nal
|
D | ushyphex.tex | 530 ir-ra-tio-nal
|
/external/hyphenation-patterns/en-GB/ |
D | hyph-en-gb.pat.txt | 7529 1tio
|
/external/e2fsprogs/po/ |
D | ca.po | 5820 msgstr "ràtio de nodes-i %s no vàlida (mín %d/màx %d)" 6156 msgstr "hi ha massa nodes-i (%llu), voleu incrementar-ne la ràtio?" 6823 msgstr "ràtio de blocs reservats errònia - %s"
|