Home
last modified time | relevance | path

Searched refs:tio (Results 1 – 25 of 30) sorted by relevance

12

/third_party/libwebsockets/minimal-examples/raw/minimal-raw-serial/
Dminimal-raw-file.c56 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/
Dtcsetattr.c30 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()
Dtcgetattr.c28 struct termios tio = {}; in tcgetattr_0100() local
29 int result = tcgetattr(STDIN_FILENO, &tio); in tcgetattr_0100()
/third_party/musl/src/termios/
Dcfsetospeed.c6 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()
Dcfgetospeed.c5 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()
Dtcgetattr.c4 int tcgetattr(int fd, struct termios *tio) in tcgetattr() argument
6 if (ioctl(fd, TCGETS, tio)) in tcgetattr()
Dtcsetattr.c5 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/
Dcfsetospeed.c7 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/
Dtty.c231 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/
Dopenpty.c10 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()
Dforkpty.c9 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/
Dopenpty.c11 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/
Dopenpty.c49 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/
Dsv.txt42 "10: tio;",
81 "10: tio;",
/third_party/icu/icu4c/source/data/rbnf/
Dsv.txt42 "10: tio;",
81 "10: tio;",
/third_party/flutter/skia/third_party/externals/icu/source/data/rbnf/
Dsv.txt41 "10: tio;",
80 "10: tio;",
/third_party/python/Lib/test/
Dtest_tarfile.py240 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/
Dca.po509 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/
Deo.po81 "Ĉi tio estas libera programo; vi estas libera ŝanĝi kaj redistribui ĝin.\n"
/third_party/icu/icu4c/source/data/misc/
DlikelySubtags.txt1197 tio{"tio_Latn_ZZ"}
DlangInfo.txt1432 "tio","Latn","ZZ",
/third_party/flutter/skia/third_party/externals/icu/source/data/misc/
DlikelySubtags.txt1179 tio{"tio_Latn_ZZ"}
/third_party/skia/third_party/externals/icu/source/data/misc/
DlikelySubtags.txt1198 tio{"tio_Latn_ZZ"}
/third_party/libphonenumber/resources/geocoding/en/
D55.txt3573 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/
D55.txt3571 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

12