Home
last modified time | relevance | path

Searched refs:tcflow (Results 1 - 15 of 15) sorted by relevance

/third_party/musl/libc-test/src/functionalext/supplement/termios/
H A Dtcflow.c65 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 Dtc.rs153 /// `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 Dmod.rs784 tcdrain, tcflow, tcflush, tcgetattr, tcgetpgrp, tcgetsid, tcgetwinsize, tcsendbreak, tcsetattr,
/third_party/musl/src/termios/
H A Dtcflow.c4 int tcflow(int fd, int action) in tcflow() function
/third_party/musl/porting/uniproton/kernel/include/
H A Dtermios.h33 int tcflow (int, int);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Dtermios.h33 int tcflow (int, int);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dtermios.h37 int tcflow (int, int);
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
H A Dtermios.h30 int tcflow (int, int);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dtermios.h33 int tcflow (int, int);
/third_party/musl/include/
H A Dtermios.h37 int tcflow (int, int);
/third_party/musl/libc-test/src/api/
H A Dtermios.c125 {int(*p)(int,int) = tcflow;} in f()
/third_party/rust/crates/nix/src/sys/
H A Dtermios.rs523 /// 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 Dtermios.c326 termios.tcflow
347 r = tcflow(fd, action); in termios_tcflow_impl()
638 /* tcflow() constants */
/third_party/rust/crates/libc/src/unix/
H A Dmod.rs1379 pub fn tcflow(fd: ::c_int, action: ::c_int) -> ::c_int; in tcflow() functions
/third_party/rust/crates/libc/src/fuchsia/
H A Dmod.rs3841 pub fn tcflow(fd: ::c_int, action: ::c_int) -> ::c_int; in tcflow() functions

Completed in 18 milliseconds