/third_party/jerryscript/jerry-ext/debugger/ |
D | debugger-serial.c | 123 options.c_cflag &= (uint32_t) ~CSIZE; // character size mask in jerryx_debugger_serial_configure_attributes() 124 options.c_cflag |= (CLOCAL | CREAD); // ignore modem control lines and enable the receiver in jerryx_debugger_serial_configure_attributes() 130 options.c_cflag |= CS5; // set character size mask to 5-bit chars in jerryx_debugger_serial_configure_attributes() 135 options.c_cflag |= CS6; // set character size mask to 6-bit chars in jerryx_debugger_serial_configure_attributes() 140 options.c_cflag |= CS7; // set character size mask to 7-bit chars in jerryx_debugger_serial_configure_attributes() 145 options.c_cflag |= CS8; // set character size mask to 8-bit chars in jerryx_debugger_serial_configure_attributes() 159 options.c_cflag &= (unsigned int) ~(PARENB | PARODD); in jerryx_debugger_serial_configure_attributes() 164 options.c_cflag |= PARENB; in jerryx_debugger_serial_configure_attributes() 165 options.c_cflag |= PARODD; in jerryx_debugger_serial_configure_attributes() 170 options.c_cflag |= PARENB; in jerryx_debugger_serial_configure_attributes() [all …]
|
/third_party/cups-filters/backend/ |
D | serial.c | 363 opts.c_cflag &= ~CSIZE; in main() 364 opts.c_cflag |= CS7; in main() 365 opts.c_cflag |= PARENB; in main() 366 opts.c_cflag &= ~PARODD; in main() 369 opts.c_cflag &= ~CSIZE; in main() 370 opts.c_cflag |= CS8; in main() 371 opts.c_cflag &= ~PARENB; in main() 383 opts.c_cflag |= PARENB; in main() 384 opts.c_cflag &= ~PARODD; in main() 388 opts.c_cflag |= PARENB; in main() [all …]
|
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/ |
D | syscalls.rs | 148 termios.c_cflag & CBAUD in cfgetospeed() 155 termios.c_cflag & CBAUD in cfgetispeed() 166 termios.c_cflag &= !(CSIZE | PARENB); in cfmakeraw() 167 termios.c_cflag |= CS8; in cfmakeraw() 179 termios.c_cflag &= !CBAUD; in cfsetospeed() 180 termios.c_cflag |= speed; in cfsetospeed() 192 termios.c_cflag &= !CBAUD; in cfsetispeed() 193 termios.c_cflag |= speed; in cfsetispeed() 202 termios.c_cflag &= !CBAUD; in cfsetspeed() 203 termios.c_cflag |= speed; in cfsetspeed()
|
/third_party/rust/crates/rustix/examples/ |
D | stdio.rs | 301 if (term.c_cflag & CBAUD) != 0 { in show() 316 if (term.c_cflag & CBAUDEX) != 0 { in show() 320 if (term.c_cflag & CSIZE) != 0 { in show() 324 if (term.c_cflag & CSTOPB) != 0 { in show() 328 if (term.c_cflag & CREAD) != 0 { in show() 332 if (term.c_cflag & PARENB) != 0 { in show() 336 if (term.c_cflag & PARODD) != 0 { in show() 340 if (term.c_cflag & HUPCL) != 0 { in show() 344 if (term.c_cflag & CLOCAL) != 0 { in show() 358 if (term.c_cflag & CIBAUD) != 0 { in show() [all …]
|
/third_party/musl/porting/liteos_a/user/src/termios/ |
D | cfsetospeed.c | 14 tio->c_cflag &= ~CBAUD; in cfsetospeed() 15 tio->c_cflag |= speed; in cfsetospeed()
|
/third_party/musl/src/termios/ |
D | cfsetospeed.c | 14 tio->c_cflag &= ~CBAUD; in cfsetospeed() 15 tio->c_cflag |= speed; in cfsetospeed()
|
D | cfmakeraw.c | 9 t->c_cflag &= ~(CSIZE|PARENB); in cfmakeraw() 10 t->c_cflag |= CS8; in cfmakeraw()
|
D | cfgetospeed.c | 7 return tio->c_cflag & CBAUD; in cfgetospeed()
|
/third_party/musl/libc-test/src/functionalext/supplement/termios/ |
D | cfmakeraw.c | 40 if ((t.c_cflag & PARENB) != 0U) { in cfmakeraw_0100() 43 if ((int)(t.c_cflag & CSIZE) != CS8) { in cfmakeraw_0100()
|
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-serial/ |
D | minimal-raw-file.c | 108 tio.c_cflag = tio.c_cflag & (unsigned long) ~( in callback_raw_test() 117 tio.c_cflag |= 0x1412 | CS8 | CREAD | CLOCAL; in callback_raw_test()
|
/third_party/toybox/toys/pending/ |
D | getty.c | 152 TT.termios.c_cflag &= (0|CSTOPB|PARENB|PARODD); in termios_init() 154 if (toys.optflags & FLAG_h) TT.termios.c_cflag |= CRTSCTS; in termios_init() 156 if (toys.optflags & FLAG_L) TT.termios.c_cflag |= CLOCAL; in termios_init() 160 TT.termios.c_cflag |= CS8|CREAD|HUPCL|CBAUDEX; in termios_init()
|
D | stty.c | 231 if (!set_flag(&new->c_cflag, cflags, ARRAY_LEN(cflags), 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() 442 show_flags(old.c_cflag, sane.c_cflag, cflags, ARRAY_LEN(cflags)); in do_stty()
|
/third_party/ltp/testcases/kernel/syscalls/ioctl/ |
D | ioctl02.c | 230 termio.c_cflag = B50 | CS7 | CREAD | PARENB | PARODD | CLOCAL; in run_ptest() 303 if (termio.c_cflag != (B50 | CS7 | CREAD | PARENB | PARODD | CLOCAL)) { in chk_tty_parms() 305 termio.c_cflag); in chk_tty_parms()
|
/third_party/node/deps/uv/src/unix/ |
D | tty.c | 256 tio->c_cflag &= ~(CSIZE | PARENB); in uv__tty_make_raw() 257 tio->c_cflag |= CS8; in uv__tty_make_raw() 314 tmp.c_cflag |= (CS8); in uv_tty_set_mode()
|
/third_party/libuv/src/unix/ |
D | tty.c | 256 tio->c_cflag &= ~(CSIZE | PARENB); in uv__tty_make_raw() 257 tio->c_cflag |= CS8; in uv__tty_make_raw() 314 tmp.c_cflag |= (CS8); in uv_tty_set_mode()
|
/third_party/rust/crates/libc/src/unix/solarish/ |
D | compat.rs | 15 (*termios).c_cflag &= !(CSIZE | PARENB); in cfmakeraw() 16 (*termios).c_cflag |= CS8; in cfmakeraw()
|
/third_party/ltp/include/lapi/ |
D | ioctl.h | 33 unsigned short int c_cflag; /* control mode flags */ member
|
/third_party/ltp/testcases/kernel/pty/ |
D | ptem01.c | 408 termios.c_cflag &= ~CBAUD; in test6() 409 termios.c_cflag |= B0 & CBAUD; in test6()
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/bits/ |
D | termios.h | 4 tcflag_t c_cflag; member
|
/third_party/musl/arch/generic/bits/ |
D | termios.h | 4 tcflag_t c_cflag; member
|
/third_party/musl/arch/mipsn32/bits/ |
D | termios.h | 4 tcflag_t c_cflag; member
|
/third_party/musl/porting/uniproton/kernel/include/bits/ |
D | termios.h | 4 tcflag_t c_cflag; member
|
/third_party/musl/porting/liteos_a/kernel/include/bits/ |
D | termios.h | 4 tcflag_t c_cflag; member
|
/third_party/musl/arch/powerpc64/bits/ |
D | termios.h | 6 tcflag_t c_cflag; member
|
/third_party/musl/porting/liteos_m/kernel/include/bits/ |
D | termios.h | 4 tcflag_t c_cflag; member
|