/third_party/rust/crates/rustix/src/backend/linux_raw/termios/ |
H A D | syscalls.rs | 15 ECHONL, ICANON, ICRNL, IEXTEN, IGNBRK, IGNCR, INLCR, ISIG, ISTRIP, IXON, OPOST, PARENB, PARMRK, 163 termios.c_iflag &= !(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON);
|
H A D | types.rs | 142 /// `INLCR` 143 pub const INLCR: c::c_uint = linux_raw_sys::general::INLCR; consts
|
/third_party/musl/src/termios/ |
H A D | cfmakeraw.c | 6 t->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON); in cfmakeraw()
|
/third_party/musl/src/legacy/ |
H A D | getpass.c | 21 t.c_iflag &= ~(INLCR|IGNCR); in getpass()
|
/third_party/musl/libc-test/src/functionalext/supplement/termios/ |
H A D | cfmakeraw.c | 31 if ((t.c_iflag & (IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON)) != 0U) { in cfmakeraw_0100()
|
/third_party/musl/porting/liteos_a/kernel/include/bits/ |
H A D | termios.h | 36 #define INLCR 0000100 macro
|
/third_party/musl/porting/uniproton/kernel/include/bits/ |
H A D | termios.h | 36 #define INLCR 0000100 macro
|
/third_party/musl/porting/liteos_m/kernel/include/bits/ |
H A D | termios.h | 36 #define INLCR 0000100 macro
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/bits/ |
H A D | termios.h | 36 #define INLCR 0000100 macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/ |
H A D | termios.h | 36 #define INLCR 0000100 macro
|
/third_party/musl/arch/generic/bits/ |
H A D | termios.h | 36 #define INLCR 0000100 macro
|
/third_party/musl/arch/mips/bits/ |
H A D | termios.h | 37 #define INLCR 0000100 macro
|
/third_party/musl/arch/powerpc/bits/ |
H A D | termios.h | 38 #define INLCR 0000100 macro
|
/third_party/musl/arch/mips64/bits/ |
H A D | termios.h | 37 #define INLCR 0000100 macro
|
/third_party/musl/arch/mipsn32/bits/ |
H A D | termios.h | 37 #define INLCR 0000100 macro
|
/third_party/musl/arch/powerpc64/bits/ |
H A D | termios.h | 38 #define INLCR 0000100 macro
|
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-serial/ |
H A D | minimal-raw-file.c | 97 tio.c_iflag &= (tcflag_t)~(INLCR | IGNBRK | IGNPAR | IGNCR | ICRNL | in callback_raw_test()
|
/third_party/musl/libc-test/src/api/ |
H A D | termios.c | 36 C(INLCR) in f()
|
/third_party/rust/crates/libc/src/unix/solarish/ |
H A D | compat.rs | 12 !(IMAXBEL | IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON); in cfmakeraw()
|
/third_party/toybox/lib/ |
H A D | tty.c | 93 termio.c_iflag = IXANY|ICRNL|INLCR; in set_terminal()
|
/third_party/libuv/src/unix/ |
H A D | tty.c | 252 tio->c_iflag &= ~(IMAXBEL | IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | in uv__tty_make_raw()
|
/third_party/node/deps/uv/src/unix/ |
H A D | tty.c | 252 tio->c_iflag &= ~(IMAXBEL | IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | in uv__tty_make_raw()
|
/third_party/rust/crates/rustix/src/backend/libc/termios/ |
H A D | types.rs | 163 /// `INLCR` 165 pub const INLCR: c::c_uint = c::INLCR; consts
|
/third_party/toybox/toys/pending/ |
H A D | stty.c | 95 { "inlcr", INLCR }, { "igncr", IGNCR }, { "icrnl", ICRNL }, { "ixon", IXON },
|
/third_party/rust/crates/rustix/examples/ |
H A D | stdio.rs | 94 if (term.c_iflag & INLCR) != 0 { in show() 95 print!(" INLCR"); in show()
|