Searched refs:tcdrain (Results 1 - 21 of 21) sorted by relevance
/third_party/rust/crates/rustix/src/termios/ |
H A D | tc.rs | 105 /// `tcdrain`. 121 /// `tcdrain(fd, duration)`—Wait until all pending output has been written. 124 /// - [POSIX `tcdrain`] 128 /// [POSIX `tcsetattr`]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/tcdrain.html 132 pub fn tcdrain<Fd: AsFd>(fd: Fd) -> io::Result<()> { in tcdrain() functions 133 backend::termios::syscalls::tcdrain(fd.as_fd()) in tcdrain()
|
H A D | mod.rs | 784 tcdrain, tcflow, tcflush, tcgetattr, tcgetpgrp, tcgetsid, tcgetwinsize, tcsendbreak, tcsetattr,
|
/third_party/musl/src/termios/ |
H A D | tcdrain.c | 5 int tcdrain(int fd) in tcdrain() function
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | termios.h | 31 int tcdrain (int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | termios.h | 31 int tcdrain (int);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | termios.h | 35 int tcdrain (int);
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
H A D | termios.h | 28 int tcdrain (int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | termios.h | 31 int tcdrain (int);
|
/third_party/musl/include/ |
H A D | termios.h | 35 int tcdrain (int);
|
/third_party/musl/src/legacy/ |
H A D | getpass.c | 24 tcdrain(fd); in getpass()
|
/third_party/musl/libc-test/src/functionalext/supplement/termios/ |
H A D | tcdrain.c | 66 printf("child has written to tty, tcdrain() started at %s", ctime(&T)); in tcdrain_0100() 68 if (tcdrain(fd_slave) != 0) { in tcdrain_0100() 69 t_error("%s tcdrain failed", __func__); in tcdrain_0100() 73 printf("tcdrain() returned at %s", ctime(&T)); in tcdrain_0100()
|
/third_party/musl/libc-test/src/api/ |
H A D | termios.c | 124 {int(*p)(int) = tcdrain;} in f()
|
/third_party/FreeBSD/lib/libc/include/ |
H A D | namespace.h | 269 #define tcdrain _tcdrain
|
/third_party/cups-filters/backend/ |
H A D | serial.c | 683 tcdrain(device_fd); in main() 1219 else if (tcdrain(device_fd)) in side_cb()
|
H A D | parallel.c | 824 else if (tcdrain(device_fd)) in side_cb()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | termios.rs | 1171 /// [tcdrain(3p)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/tcdrain.html)). 1172 pub fn tcdrain(fd: RawFd) -> Result<()> { in tcdrain() functions 1173 Errno::result(unsafe { libc::tcdrain(fd) }).map(drop) in tcdrain()
|
/third_party/python/Modules/ |
H A D | termios.c | 267 termios.tcdrain 283 r = tcdrain(fd); in termios_tcdrain_impl()
|
/third_party/backends/backend/ |
H A D | dc210.c | 405 tcdrain (camera->fd); in init_dc210()
|
H A D | dc240.c | 450 tcdrain (camera->fd); in init_dc240()
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 1370 link_name = "tcdrain$UNIX2003" 1372 pub fn tcdrain(fd: ::c_int) -> ::c_int; in tcdrain() functions
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3832 pub fn tcdrain(fd: ::c_int) -> ::c_int; in tcdrain() functions
|
Completed in 25 milliseconds