Home
last modified time | relevance | path

Searched refs:tcflush (Results 1 - 22 of 22) sorted by relevance

/third_party/rust/crates/rustix/src/termios/
H A Dtc.rs136 /// `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 Dmod.rs784 tcdrain, tcflow, tcflush, tcgetattr, tcgetpgrp, tcgetsid, tcgetwinsize, tcsendbreak, tcsetattr,
/third_party/musl/src/termios/
H A Dtcflush.c4 int tcflush(int fd, int queue) in tcflush() function
/third_party/musl/porting/uniproton/kernel/include/
H A Dtermios.h32 int tcflush (int, int);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Dtermios.h32 int tcflush (int, int);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dtermios.h36 int tcflush (int, int);
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
H A Dtermios.h29 int tcflush (int, int);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dtermios.h32 int tcflush (int, int);
/third_party/musl/include/
H A Dtermios.h36 int tcflush (int, int);
/third_party/ltp/testcases/kernel/pty/
H A Dpty03.c74 if (tcflush(ptmx, TCIFLUSH)) in hangup()
75 tst_brk(TBROK | TERRNO, "tcflush(ptmx, TCIFLUSH)"); in hangup()
H A Dpty04.c219 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 Dgetty.c151 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 Dlogin.c55 tcflush(0, TCIFLUSH); in login_main()
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-serial/
H A Dminimal-raw-file.c71 tcflush(vhd->filefd, TCIOFLUSH); in callback_raw_test()
/third_party/musl/libc-test/src/api/
H A Dtermios.c126 {int(*p)(int,int) = tcflush;} in f()
/third_party/toybox/lib/
H A Dpassword.c62 tcflush(0, TCIFLUSH); in read_password()
/third_party/jerryscript/jerry-ext/debugger/
H A Ddebugger-serial.c222 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 Dtermios.rs507 /// 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 Dtermios.c294 termios.tcflush
315 r = tcflush(fd, queue); in termios_tcflush_impl()
633 /* tcflush() constants */
/third_party/mksh/
H A Dmisc.c2410 if (tcflush(fd, TCIOFLUSH)) in chvt()
/third_party/rust/crates/libc/src/unix/
H A Dmod.rs1380 pub fn tcflush(fd: ::c_int, action: ::c_int) -> ::c_int; in tcflush() functions
/third_party/rust/crates/libc/src/fuchsia/
H A Dmod.rs3842 pub fn tcflush(fd: ::c_int, action: ::c_int) -> ::c_int; in tcflush() functions

Completed in 24 milliseconds