Home
last modified time | relevance | path

Searched refs:c_lflag (Results 1 – 25 of 84) sorted by relevance

1234

/third_party/rust/crates/rustix/examples/
Dstdio.rs385 if (term.c_lflag & ISIG) != 0 { in show()
388 if (term.c_lflag & ICANON) != 0 { in show()
392 if (term.c_lflag & XCASE) != 0 { in show()
396 if (term.c_lflag & ECHO) != 0 { in show()
400 if (term.c_lflag & ECHOE) != 0 { in show()
404 if (term.c_lflag & ECHOK) != 0 { in show()
408 if (term.c_lflag & ECHONL) != 0 { in show()
412 if (term.c_lflag & ECHOCTL) != 0 { in show()
416 if (term.c_lflag & ECHOPRT) != 0 { in show()
420 if (term.c_lflag & ECHOKE) != 0 { in show()
[all …]
/third_party/musl/src/legacy/
Dgetpass.c19 t.c_lflag &= ~(ECHO|ISIG); in getpass()
20 t.c_lflag |= ICANON; in getpass()
/third_party/toybox/toys/pending/
Dstty.c234 !set_flag(&new->c_lflag, lflags, ARRAY_LEN(lflags), option, on)) in set_option()
348 &new.c_cflag, &new.c_lflag, &n) == 4) in do_stty()
405 xprintf("%x:%x:%x:%x:", old.c_iflag, old.c_oflag, old.c_cflag, old.c_lflag); in do_stty()
445 show_flags(old.c_lflag, sane.c_lflag, lflags, ARRAY_LEN(lflags)); in do_stty()
/third_party/ltp/testcases/kernel/syscalls/ioctl/
Dioctl02.c240 termio.c_lflag = in run_ptest()
331 (termio.c_lflag in chk_tty_parms()
334 termio.c_lflag); in chk_tty_parms()
/third_party/curl/src/
Dtool_getpass.c149 noecho.c_lflag &= ~ECHO; in ttyecho()
154 noecho.c_lflag &= ~ECHO; in ttyecho()
/third_party/ltp/include/lapi/
Dioctl.h34 unsigned short int c_lflag; /* local mode flags */ member
/third_party/musl/src/termios/
Dcfmakeraw.c8 t->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN); in cfmakeraw()
/third_party/musl/libc-test/src/functionalext/supplement/termios/
Dcfmakeraw.c37 if ((t.c_lflag & (ECHO | ECHONL | ICANON | ISIG | IEXTEN)) != 0U) { in cfmakeraw_0100()
/third_party/ltp/testcases/kernel/pty/
Dpty02.c36 io.c_lflag = EXTPROC | ICANON; in do_test()
/third_party/python/Modules/
Dtermios.c110 if ((mode.c_lflag & ICANON) == 0) { in termios_tcgetattr_impl()
127 PyList_SetItem(v, 3, PyLong_FromLong((long)mode.c_lflag)); in termios_tcgetattr_impl()
179 mode.c_lflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 3)); in termios_tcsetattr_impl()
/third_party/node/deps/uv/src/unix/
Dtty.c255 tio->c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN); in uv__tty_make_raw()
315 tmp.c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG); in uv_tty_set_mode()
/third_party/libuv/src/unix/
Dtty.c255 tio->c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN); in uv__tty_make_raw()
315 tmp.c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG); in uv_tty_set_mode()
/third_party/musl/porting/liteos_a_newlib/kernel/include/bits/
Dtermios.h5 tcflag_t c_lflag; member
/third_party/musl/arch/generic/bits/
Dtermios.h5 tcflag_t c_lflag; member
/third_party/musl/arch/mipsn32/bits/
Dtermios.h5 tcflag_t c_lflag; member
/third_party/musl/porting/uniproton/kernel/include/bits/
Dtermios.h5 tcflag_t c_lflag; member
/third_party/musl/porting/liteos_a/kernel/include/bits/
Dtermios.h5 tcflag_t c_lflag; member
/third_party/musl/arch/powerpc64/bits/
Dtermios.h7 tcflag_t c_lflag; member
/third_party/musl/porting/liteos_m/kernel/include/bits/
Dtermios.h5 tcflag_t c_lflag; member
/third_party/musl/arch/mips/bits/
Dtermios.h5 tcflag_t c_lflag; member
/third_party/musl/arch/powerpc/bits/
Dtermios.h7 tcflag_t c_lflag; member
/third_party/musl/arch/mips64/bits/
Dtermios.h5 tcflag_t c_lflag; member
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/
Dtermios.h5 tcflag_t c_lflag; member
/third_party/ltp/testcases/cve/
Dcve-2014-0196.c102 t.c_lflag |= ECHO; in run()
/third_party/rust/crates/nix/src/sys/
Dtermios.rs267 termios.c_lflag = self.local_flags.bits(); in get_libc_termios()
293 termios.c_lflag = self.local_flags.bits(); in get_libc_termios_mut()
313 self.local_flags = LocalFlags::from_bits_truncate(termios.c_lflag); in update_wrapper()
333 local_flags: LocalFlags::from_bits_truncate(termios.c_lflag), in from()

1234