Searched refs:PARODD (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-11-stable/bin/stty/
H A Dmodes.c66 { "parodd", PARODD, 0 },
67 { "-parodd", 0, PARODD },
68 { "parity", PARENB | CS7, PARODD | CSIZE },
69 { "-parity", CS8, PARODD | PARENB | CSIZE },
70 { "evenp", PARENB | CS7, PARODD | CSIZE },
71 { "-evenp", CS8, PARODD | PARENB | CSIZE },
72 { "oddp", PARENB | CS7 | PARODD, CSIZE },
73 { "-oddp", CS8, PARODD | PARENB | CSIZE },
74 { "pass8", CS8, PARODD | PARENB | CSIZE },
75 { "-pass8", PARENB | CS7, PARODD | CSIZ
[all...]
H A Dprint.c169 put("-parodd", PARODD, 0);
/freebsd-11-stable/usr.sbin/lpr/lpd/
H A Dmodes.c66 { "parodd", PARODD, 0 },
67 { "-parodd", 0, PARODD },
68 { "parity", PARENB | CS7, PARODD | CSIZE },
69 { "-parity", CS8, PARODD | PARENB | CSIZE },
70 { "evenp", PARENB | CS7, PARODD | CSIZE },
71 { "-evenp", CS8, PARODD | PARENB | CSIZE },
72 { "oddp", PARENB | CS7 | PARODD, CSIZE },
73 { "-oddp", CS8, PARODD | PARENB | CSIZE },
74 { "pass8", CS8, PARODD | PARENB | CSIZE },
75 { "-pass8", PARENB | CS7, PARODD | CSIZ
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/trace/
H A Dlib_tracebits.c141 {PARODD | PARENB, "PARODD"}, /* concession to readability */
143 #define ALLCTRL (CLOCAL|CREAD|CSIZE|CSTOPB|HUPCL|PARENB|PARODD)
/freebsd-11-stable/contrib/ncurses/include/
H A Dnc_termios.h122 #define PARODD 0001000 macro
/freebsd-11-stable/usr.bin/tset/
H A Dset.c127 mode.c_cflag &= ~(CSIZE | CSTOPB | PARENB | PARODD | CLOCAL);
209 mode.c_cflag &= ~PARODD;
213 mode.c_cflag |= PARODD;
/freebsd-11-stable/sys/sys/
H A D_termios.h134 #define PARODD 0x00002000 /* odd parity, else even */ macro
/freebsd-11-stable/crypto/openssh/
H A Dttymodes.h178 TTYMODE(PARODD, c_cflag, 93)
/freebsd-11-stable/contrib/tcsh/
H A Dmi.termios.c230 * PARODD: set if ODDP is set
242 termios_p->c_cflag |= PARENB | PARODD;
367 if (termios_p->c_cflag & PARODD)
H A Ded.term.c211 # ifdef PARODD
212 { "parodd", PARODD, M_CONTROL },
213 # endif /* PARODD */
/freebsd-11-stable/sys/kern/
H A Dtty_compat.c293 if (cflag&PARODD)
390 cflag &= ~PARODD;
393 cflag |= PARODD;
/freebsd-11-stable/libexec/getty/
H A Dsubr.c288 SET(cflag, PARODD);
293 CLR(cflag, PARODD);
298 CLR(cflag, PARODD);
/freebsd-11-stable/usr.bin/tip/libacu/
H A Dv831.c212 cntrl.c_cflag |= PARODD | PARENB;
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_palisade.c336 tio.c_cflag |= (PARENB|PARODD);
365 tio.c_cflag = (CS8|CLOCAL|CREAD|PARENB|PARODD);
370 tio.c_cflag = (CS8|CLOCAL|CREAD|PARENB|PARODD);
379 tio.c_cflag &= ~(PARENB|PARODD);
/freebsd-11-stable/contrib/gdb/gdb/tui/
H A Dtui.c534 mode.c_cflag &= ~(CSIZE | PARODD | CLOCAL);
/freebsd-11-stable/contrib/ncurses/progs/
H A Dtset.c856 mode.c_cflag &= ~((unsigned) (CSIZE | CSTOPB | PARENB | PARODD | CLOCAL));
965 mode.c_cflag &= ~PARODD;
969 mode.c_cflag |= PARODD;
/freebsd-11-stable/usr.sbin/ppp/
H A Dphysical.c226 { "odd", "P_ODD", CS7 | PARENB | PARODD },
256 rstio.c_cflag &= ~(CSIZE | PARODD | PARENB);
502 if (p->cfg.parity & PARODD)
/freebsd-11-stable/sys/dev/usb/serial/
H A Ducycom.c529 if (t->c_cflag & PARODD)
H A Duark.c399 if (t->c_cflag & PARODD)
H A Duvscom.c619 if (t->c_cflag & PARODD) {
H A Dumoscom.c496 if (t->c_cflag & PARODD)
H A Dumct.c543 value |= (t->c_cflag & PARODD) ? 0x0 : 0x10;
H A Dubsa.c484 value = (t->c_cflag & PARODD) ? UBSA_PARITY_ODD : UBSA_PARITY_EVEN;
/freebsd-11-stable/sys/dev/uart/
H A Duart_tty.c280 parity = (t->c_cflag & PARODD) ? UART_PARITY_ODD :
/freebsd-11-stable/sys/i386/ibcs2/
H A Dibcs2_ioctl.c157 if (l & IBCS2_PARODD) r |= PARODD;
251 if (l & PARODD) r |= IBCS2_PARODD;

Completed in 159 milliseconds

12