Searched refs:tcflow (Results 1 - 15 of 15) sorted by relevance
/third_party/musl/libc-test/src/functionalext/supplement/termios/ |
H A D | tcflow.c | 65 if (tcflow(fds, TCOON) != 0) { in tcflow_0100() 66 t_error("%s tcflow failed", __func__); in tcflow_0100() 87 int result = tcflow(-1, TCOON); in tcflow_0200()
|
/third_party/rust/crates/rustix/src/termios/ |
H A D | tc.rs | 153 /// `tcflow(fd, action)`—Suspend or resume transmission or reception. 156 /// - [POSIX `tcflow`] 160 /// [POSIX `tcflow`]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/tcflow.html 165 pub fn tcflow<Fd: AsFd>(fd: Fd, action: Action) -> io::Result<()> { in tcflow() functions 166 backend::termios::syscalls::tcflow(fd.as_fd(), action) in tcflow()
|
H A D | mod.rs | 784 tcdrain, tcflow, tcflush, tcgetattr, tcgetpgrp, tcgetsid, tcgetwinsize, tcsendbreak, tcsetattr,
|
/third_party/musl/src/termios/ |
H A D | tcflow.c | 4 int tcflow(int fd, int action) in tcflow() function
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | termios.h | 33 int tcflow (int, int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | termios.h | 33 int tcflow (int, int);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | termios.h | 37 int tcflow (int, int);
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
H A D | termios.h | 30 int tcflow (int, int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | termios.h | 33 int tcflow (int, int);
|
/third_party/musl/include/ |
H A D | termios.h | 37 int tcflow (int, int);
|
/third_party/musl/libc-test/src/api/ |
H A D | termios.c | 125 {int(*p)(int,int) = tcflow;} in f()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | termios.rs | 523 /// Used as an argument to `tcflow()`. 1177 /// [tcflow(3p)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/tcflow.html)). 1179 /// `tcflow()` suspends of resumes the transmission or reception of data for the given port 1181 pub fn tcflow(fd: RawFd, action: FlowArg) -> Result<()> { in tcflow() functions 1182 Errno::result(unsafe { libc::tcflow(fd, action as c_int) }).map(drop) in tcflow()
|
/third_party/python/Modules/ |
H A D | termios.c | 326 termios.tcflow 347 r = tcflow(fd, action); in termios_tcflow_impl() 638 /* tcflow() constants */
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 1379 pub fn tcflow(fd: ::c_int, action: ::c_int) -> ::c_int; in tcflow() functions
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3841 pub fn tcflow(fd: ::c_int, action: ::c_int) -> ::c_int; in tcflow() functions
|
Completed in 18 milliseconds