Searched refs:tcdrain (Results 1 – 25 of 29) sorted by relevance
12
/third_party/rust/crates/rustix/src/termios/ |
D | tc.rs | 132 pub fn tcdrain<Fd: AsFd>(fd: Fd) -> io::Result<()> { in tcdrain() function 133 backend::termios::syscalls::tcdrain(fd.as_fd()) in tcdrain()
|
D | mod.rs | 784 tcdrain, tcflow, tcflush, tcgetattr, tcgetpgrp, tcgetsid, tcgetwinsize, tcsendbreak, tcsetattr,
|
/third_party/musl/src/termios/ |
D | tcdrain.c | 5 int tcdrain(int fd) in tcdrain() function
|
/third_party/rust/crates/rustix/src/backend/libc/termios/ |
D | syscalls.rs | 65 pub(crate) fn tcdrain(fd: BorrowedFd) -> io::Result<()> { in tcdrain() function 66 unsafe { ret(c::tcdrain(borrowed_fd(fd))) } in tcdrain()
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
D | termios.h | 28 int tcdrain (int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | termios.h | 31 int tcdrain (int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | termios.h | 31 int tcdrain (int);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | termios.h | 31 int tcdrain (int);
|
/third_party/musl/include/ |
D | termios.h | 35 int tcdrain (int);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | termios.h | 35 int tcdrain (int);
|
/third_party/musl/src/legacy/ |
D | getpass.c | 24 tcdrain(fd); in getpass()
|
/third_party/musl/libc-test/src/functionalext/supplement/termios/ |
D | tcdrain.c | 68 if (tcdrain(fd_slave) != 0) { in tcdrain_0100()
|
D | test_src_functionalext_supplement_termios.gni | 20 "tcdrain",
|
/third_party/musl/libc-test/src/api/ |
D | termios.c | 124 {int(*p)(int) = tcdrain;} in f()
|
/third_party/cups-filters/backend/ |
D | serial.c | 683 tcdrain(device_fd); in main() 1219 else if (tcdrain(device_fd)) in side_cb()
|
D | parallel.c | 824 else if (tcdrain(device_fd)) in side_cb()
|
/third_party/FreeBSD/lib/libc/include/ |
D | namespace.h | 269 #define tcdrain _tcdrain
|
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/ |
D | syscalls.rs | 86 pub(crate) fn tcdrain(fd: BorrowedFd) -> io::Result<()> { in tcdrain() function
|
/third_party/python/Doc/library/ |
D | termios.rst | 58 .. function:: tcdrain(fd)
|
/third_party/rust/crates/nix/src/sys/ |
D | termios.rs | 1172 pub fn tcdrain(fd: RawFd) -> Result<()> { in tcdrain() function 1173 Errno::result(unsafe { libc::tcdrain(fd) }).map(drop) in tcdrain()
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | unix.txt | 834 tcdrain
|
D | android.txt | 3524 tcdrain
|
/third_party/python/Modules/ |
D | termios.c | 259 if (tcdrain(fd) == -1) { in termios_tcdrain_impl()
|
/third_party/musl/ |
D | libc.map.txt | 1801 tcdrain;
|
/third_party/rust/crates/libc/src/unix/ |
D | mod.rs | 1372 pub fn tcdrain(fd: ::c_int) -> ::c_int; in tcdrain() function
|
12