/third_party/rust/crates/rustix/src/termios/ |
H A D | tc.rs | 136 /// `tcflush(fd, queue_selector)`—Wait until all pending output has been 140 /// - [POSIX `tcflush`] 144 /// [POSIX `tcflush`]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/tcflush.html 149 pub fn tcflush<Fd: AsFd>(fd: Fd, queue_selector: QueueSelector) -> io::Result<()> { in tcflush() functions 150 backend::termios::syscalls::tcflush(fd.as_fd(), queue_selector) in tcflush()
|
H A D | mod.rs | 784 tcdrain, tcflow, tcflush, tcgetattr, tcgetpgrp, tcgetsid, tcgetwinsize, tcsendbreak, tcsetattr,
|
/third_party/musl/src/termios/ |
H A D | tcflush.c | 4 int tcflush(int fd, int queue) in tcflush() function
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | termios.h | 32 int tcflush (int, int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | termios.h | 32 int tcflush (int, int);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | termios.h | 36 int tcflush (int, int);
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
H A D | termios.h | 29 int tcflush (int, int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | termios.h | 32 int tcflush (int, int);
|
/third_party/musl/include/ |
H A D | termios.h | 36 int tcflush (int, int);
|
/third_party/ltp/testcases/kernel/pty/ |
H A D | pty03.c | 74 if (tcflush(ptmx, TCIFLUSH)) in hangup() 75 tst_brk(TBROK | TERRNO, "tcflush(ptmx, TCIFLUSH)"); in hangup()
|
H A D | pty04.c | 219 if (tcflush(ptmx, TCIFLUSH)) in do_pty() 220 tst_brk(TBROK | TERRNO, "tcflush(ptmx, TCIFLUSH)"); in do_pty()
|
/third_party/toybox/toys/pending/ |
H A D | getty.c | 151 tcflush(STDIN_FILENO, TCIOFLUSH); in termios_init() 244 tcflush(STDIN_FILENO, TCIFLUSH); // Flush pending speed switches in read_login_name()
|
/third_party/toybox/toys/other/ |
H A D | login.c | 55 tcflush(0, TCIFLUSH); in login_main()
|
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-serial/ |
H A D | minimal-raw-file.c | 71 tcflush(vhd->filefd, TCIOFLUSH); in callback_raw_test()
|
/third_party/musl/libc-test/src/api/ |
H A D | termios.c | 126 {int(*p)(int,int) = tcflush;} in f()
|
/third_party/toybox/lib/ |
H A D | password.c | 62 tcflush(0, TCIFLUSH); in read_password()
|
/third_party/jerryscript/jerry-ext/debugger/ |
H A D | debugger-serial.c | 222 if (tcflush (fd, TCIOFLUSH) != 0) in jerryx_debugger_serial_configure_attributes() 224 JERRYX_ERROR_MSG ("Error %d in tcflush() :%s\n", errno, strerror (errno)); in jerryx_debugger_serial_configure_attributes()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | termios.rs | 507 /// Used as an argument to `tcflush()`. 1186 /// [tcflush(3p)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/tcflush.html)). 1188 /// `tcflush()` will discard data for a terminal port in the input queue, output queue, or both 1190 pub fn tcflush(fd: RawFd, action: FlushArg) -> Result<()> { in tcflush() functions 1191 Errno::result(unsafe { libc::tcflush(fd, action as c_int) }).map(drop) in tcflush()
|
/third_party/python/Modules/ |
H A D | termios.c | 294 termios.tcflush 315 r = tcflush(fd, queue); in termios_tcflush_impl() 633 /* tcflush() constants */
|
/third_party/mksh/ |
H A D | misc.c | 2410 if (tcflush(fd, TCIOFLUSH)) in chvt()
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 1380 pub fn tcflush(fd: ::c_int, action: ::c_int) -> ::c_int; in tcflush() functions
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3842 pub fn tcflush(fd: ::c_int, action: ::c_int) -> ::c_int; in tcflush() functions
|