Home
last modified time | relevance | path

Searched refs:c_iflag (Results 1 - 25 of 70) sorted by relevance

123

/third_party/rust/crates/rustix/examples/
H A Dstdio.rs70 if (term.c_iflag & IGNBRK) != 0 { in show()
74 if (term.c_iflag & BRKINT) != 0 { in show()
78 if (term.c_iflag & IGNPAR) != 0 { in show()
82 if (term.c_iflag & PARMRK) != 0 { in show()
86 if (term.c_iflag & INPCK) != 0 { in show()
90 if (term.c_iflag & ISTRIP) != 0 { in show()
94 if (term.c_iflag & INLCR) != 0 { in show()
98 if (term.c_iflag & IGNCR) != 0 { in show()
102 if (term.c_iflag & ICRNL) != 0 { in show()
112 if (term.c_iflag in show()
[all...]
/third_party/musl/src/legacy/
H A Dgetpass.c21 t.c_iflag &= ~(INLCR|IGNCR); in getpass()
22 t.c_iflag |= ICRNL; in getpass()
/third_party/toybox/toys/pending/
H A Dstty.c232 !set_flag(&new->c_iflag, iflags, ARRAY_LEN(iflags), option, on) && in set_option()
347 else if (sscanf(arg, "%x:%x:%x:%x:%n", &new.c_iflag, &new.c_oflag, in do_stty()
405 xprintf("%x:%x:%x:%x:", old.c_iflag, old.c_oflag, old.c_cflag, old.c_lflag); in do_stty()
443 show_flags(old.c_iflag, sane.c_iflag, iflags, ARRAY_LEN(iflags)); in do_stty()
/third_party/ltp/testcases/kernel/syscalls/ioctl/
H A Dioctl02.c244 termio.c_iflag = in run_ptest()
339 (termio.c_iflag in chk_tty_parms()
343 termio.c_iflag); in chk_tty_parms()
/third_party/ltp/include/lapi/
H A Dioctl.h31 unsigned short int c_iflag; /* input mode flags */ member
/third_party/musl/src/termios/
H A Dcfmakeraw.c6 t->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON); in cfmakeraw()
/third_party/jerryscript/jerry-ext/debugger/
H A Ddebugger-serial.c201 options.c_iflag &= (uint32_t) ~IGNBRK; // disable break processing in jerryx_debugger_serial_configure_attributes()
202 options.c_iflag &= (uint32_t) ~(IXON | IXOFF | IXANY); // disable xon/xoff ctrl in jerryx_debugger_serial_configure_attributes()
/third_party/toybox/lib/
H A Dtty.c93 termio.c_iflag = IXANY|ICRNL|INLCR; in set_terminal()
94 if (toys.which->flags & TOYFLAG_LOCALE) termio.c_iflag |= IUTF8; in set_terminal()
/third_party/musl/libc-test/src/functionalext/supplement/termios/
H A Dcfmakeraw.c31 if ((t.c_iflag & (IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON)) != 0U) { in cfmakeraw_0100()
32 t_error("%s t.c_iflag failed\n", __func__); in cfmakeraw_0100()
/third_party/cups-filters/backend/
H A Dserial.c424 opts.c_iflag &= ~(IXON | IXOFF); in main()
429 opts.c_iflag |= IXON | IXOFF; in main()
435 opts.c_iflag &= ~(IXON | IXOFF); in main()
440 opts.c_iflag &= ~(IXON | IXOFF); in main()
/third_party/musl/porting/liteos_a/kernel/include/bits/
H A Dtermios.h2 tcflag_t c_iflag; member
/third_party/musl/porting/uniproton/kernel/include/bits/
H A Dtermios.h2 tcflag_t c_iflag; member
/third_party/musl/porting/liteos_m/kernel/include/bits/
H A Dtermios.h2 tcflag_t c_iflag; member
/third_party/musl/porting/liteos_a_newlib/kernel/include/bits/
H A Dtermios.h2 tcflag_t c_iflag; member
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/
H A Dtermios.h2 tcflag_t c_iflag; member
/third_party/musl/arch/generic/bits/
H A Dtermios.h2 tcflag_t c_iflag; member
/third_party/libuv/src/unix/
H A Dtty.c252 tio->c_iflag &= ~(IMAXBEL | IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | in uv__tty_make_raw()
317 tmp.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON); in uv_tty_set_mode()
/third_party/node/deps/uv/src/unix/
H A Dtty.c252 tio->c_iflag &= ~(IMAXBEL | IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | in uv__tty_make_raw()
312 tmp.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON); in uv_tty_set_mode()
/third_party/musl/arch/mips/bits/
H A Dtermios.h2 tcflag_t c_iflag; member
/third_party/musl/arch/powerpc/bits/
H A Dtermios.h4 tcflag_t c_iflag; member
/third_party/musl/arch/mips64/bits/
H A Dtermios.h2 tcflag_t c_iflag; member
/third_party/musl/arch/mipsn32/bits/
H A Dtermios.h2 tcflag_t c_iflag; member
/third_party/musl/arch/powerpc64/bits/
H A Dtermios.h4 tcflag_t c_iflag; member
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/
H A Dsyscalls.rs163 termios.c_iflag &= !(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON);
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-serial/
H A Dminimal-raw-file.c97 tio.c_iflag &= (tcflag_t)~(INLCR | IGNBRK | IGNPAR | IGNCR | ICRNL | in callback_raw_test()

Completed in 13 milliseconds

123