/third_party/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 &= (tcflag_t)~(ISIG | ICANON | IEXTEN | ECHO | in callback_raw_test() 97 tio.c_iflag &= (tcflag_t)~(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 …]
|
/third_party/musl/libc-test/src/functionalext/supplement/manual/termios/ |
D | tcsetattr.c | 30 struct termios tio = {}; in tcsetattr_0100() local 31 tio.c_cc[VEOF] = veof; in tcsetattr_0100() 32 int result = tcsetattr(STDIN_FILENO, TCSAFLUSH, &tio); in tcsetattr_0100() 37 result = tcgetattr(STDIN_FILENO, &tio); in tcsetattr_0100() 42 if (tio.c_cc[VEOF] != veof) { in tcsetattr_0100() 43 t_error("%s failed: tio.c_cc[%d] = %#x\n", __func__, VEOF, tio.c_cc[VEOF]); in tcsetattr_0100()
|
D | tcgetattr.c | 28 struct termios tio = {}; in tcgetattr_0100() local 29 int result = tcgetattr(STDIN_FILENO, &tio); in tcgetattr_0100()
|
/third_party/musl/src/termios/ |
D | cfsetospeed.c | 6 int cfsetospeed(struct termios *tio, speed_t speed) in cfsetospeed() argument 12 tio->c_cflag &= ~CBAUD; in cfsetospeed() 13 tio->c_cflag |= speed; in cfsetospeed() 17 int cfsetispeed(struct termios *tio, speed_t speed) in cfsetispeed() argument 19 return speed ? cfsetospeed(tio, speed) : 0; in cfsetispeed()
|
D | cfgetospeed.c | 5 speed_t cfgetospeed(const struct termios *tio) in cfgetospeed() argument 7 return tio->c_cflag & CBAUD; in cfgetospeed() 10 speed_t cfgetispeed(const struct termios *tio) in cfgetispeed() argument 12 return cfgetospeed(tio); in cfgetispeed()
|
D | tcgetattr.c | 4 int tcgetattr(int fd, struct termios *tio) in tcgetattr() argument 6 if (ioctl(fd, TCGETS, tio)) in tcgetattr()
|
D | tcsetattr.c | 5 int tcsetattr(int fd, int act, const struct termios *tio) in tcsetattr() argument 11 return ioctl(fd, TCSETS+act, tio); in tcsetattr()
|
/third_party/musl/porting/liteos_a/user/src/termios/ |
D | cfsetospeed.c | 7 int cfsetospeed(struct termios *tio, speed_t speed) in cfsetospeed() argument 14 tio->c_cflag &= ~CBAUD; in cfsetospeed() 15 tio->c_cflag |= speed; in cfsetospeed() 19 int cfsetispeed(struct termios *tio, speed_t speed) in cfsetispeed() argument 22 return speed ? cfsetospeed(tio, speed) : 0; in cfsetispeed()
|
/third_party/libuv/src/unix/ |
D | tty.c | 231 static void uv__tty_make_raw(struct termios* tio) { in uv__tty_make_raw() argument 232 assert(tio != NULL); in uv__tty_make_raw() 239 tio->c_iflag &= ~(IMAXBEL | IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | in uv__tty_make_raw() 241 tio->c_oflag &= ~OPOST; in uv__tty_make_raw() 242 tio->c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN); in uv__tty_make_raw() 243 tio->c_cflag &= ~(CSIZE | PARENB); in uv__tty_make_raw() 244 tio->c_cflag |= CS8; in uv__tty_make_raw() 261 tio->c_cc[VMIN] = 1; in uv__tty_make_raw() 262 tio->c_cc[VTIME] = 0; in uv__tty_make_raw() 264 cfmakeraw(tio); in uv__tty_make_raw()
|
/third_party/musl/src/misc/ |
D | openpty.c | 10 int openpty(int *pm, int *ps, char *name, const struct termios *tio, const struct winsize *ws) in openpty() argument 28 if (tio) tcsetattr(s, TCSANOW, tio); in openpty()
|
D | forkpty.c | 9 int forkpty(int *pm, char *name, const struct termios *tio, const struct winsize *ws) in forkpty() argument 15 if (openpty(&m, &s, name, tio, ws) < 0) return -1; in forkpty()
|
/third_party/musl/porting/liteos_a/user/src/misc/ |
D | openpty.c | 11 int openpty(int *pm, int *ps, char *name, const struct termios *tio, const struct winsize *ws) in openpty() argument 30 if (tio) tcsetattr(s, TCSANOW, tio); in openpty()
|
/third_party/musl/libc-test/src/functionalext/supplement/misc/ |
D | openpty.c | 49 struct termios tio; in openpty_0200() local 51 int ret = openpty(&amaster, &aslave, name, &tio, &size); in openpty_0200()
|
/third_party/skia/third_party/externals/icu/source/data/rbnf/ |
D | sv.txt | 42 "10: tio;", 81 "10: tio;",
|
/third_party/icu/icu4c/source/data/rbnf/ |
D | sv.txt | 42 "10: tio;", 81 "10: tio;",
|
/third_party/flutter/skia/third_party/externals/icu/source/data/rbnf/ |
D | sv.txt | 41 "10: tio;", 80 "10: tio;",
|
/third_party/python/Lib/test/ |
D | test_tarfile.py | 240 tio = io.TextIOWrapper(io.BytesIO(), 'ascii', newline='\n') 241 with support.swap_attr(sys, 'stdout', tio): 243 out = tio.detach().getvalue() 277 tio = io.TextIOWrapper(io.BytesIO(), 'ascii', newline='\n') 278 with support.swap_attr(sys, 'stdout', tio): 280 out = tio.detach().getvalue() 301 tio = io.TextIOWrapper(io.BytesIO(), 'ascii', newline='\n') 306 with support.swap_attr(sys, 'stdout', tio): 308 out = tio.detach().getvalue()
|
/third_party/gstreamer/gstreamer/po/ |
D | ca.po | 509 msgstr "ràtio de bits" 512 msgstr "mitja o valor exacte de ràtio de bits en bits/s" 515 msgstr "ràtio de bits nominal" 518 msgstr "ràtio de bits nominal en bits/s" 521 msgstr "ràtio de bits mínim" 524 msgstr "ràtio de bits mínim en bits/s" 527 msgstr "ràtio de bits màxim" 530 msgstr "ràtio de bits màxim en bits/s"
|
/third_party/gettext/gettext-runtime/po/ |
D | eo.po | 81 "Ĉi tio estas libera programo; vi estas libera ŝanĝi kaj redistribui ĝin.\n"
|
/third_party/icu/icu4c/source/data/misc/ |
D | likelySubtags.txt | 1197 tio{"tio_Latn_ZZ"}
|
D | langInfo.txt | 1432 "tio","Latn","ZZ",
|
/third_party/flutter/skia/third_party/externals/icu/source/data/misc/ |
D | likelySubtags.txt | 1179 tio{"tio_Latn_ZZ"}
|
/third_party/skia/third_party/externals/icu/source/data/misc/ |
D | likelySubtags.txt | 1198 tio{"tio_Latn_ZZ"}
|
/third_party/libphonenumber/resources/geocoding/en/ |
D | 55.txt | 3573 55313523|Sítio Novo - MG 7828 55623483|Sítio D'Abadia - GO 8045 55633446|Sítio Novo do Tocantins - TO 9413 55753296|Sítio do Quinto - BA 9685 55773671|Sítio do Mato - BA 10544 55843252|Sítio Novo - RN 11255 55893467|Lagoa do Sítio - PI
|
/third_party/libphonenumber/resources/geocoding/pt/ |
D | 55.txt | 3571 55313523|Sítio Novo - MG 7826 55623483|Sítio D'Abadia - GO 8043 55633446|Sítio Novo do Tocantins - TO 9411 55753296|Sítio do Quinto - BA 9683 55773671|Sítio do Mato - BA 10542 55843252|Sítio Novo - RN 11253 55893467|Lagoa do Sítio - PI
|