c_oflag           102 arch/i386/stand/boot/crt0.c         tc.c_oflag &= ~OPOST;
c_oflag           328 compat/common/tty_43.c 	register tcflag_t oflag = t->c_oflag;
c_oflag           416 compat/common/tty_43.c 	t->c_oflag = oflag;
c_oflag           428 compat/common/tty_43.c 	register tcflag_t oflag = t->c_oflag;
c_oflag           493 compat/common/tty_43.c 	t->c_oflag = oflag;
c_oflag           154 compat/hpux/hpux_termio.h 	u_short	c_oflag;	/* output modes */
c_oflag           179 compat/hpux/hpux_termio.h 	u_int	c_oflag;	/* output modes */
c_oflag           113 compat/hpux/hpux_tty.c 		if (tios.c_oflag & OPOST)
c_oflag           114 compat/hpux/hpux_tty.c 			htios.c_oflag |= TIO_OPOST;
c_oflag           115 compat/hpux/hpux_tty.c 		if (tios.c_oflag & ONLCR)
c_oflag           116 compat/hpux/hpux_tty.c 			htios.c_oflag |= TIO_ONLCR;
c_oflag           117 compat/hpux/hpux_tty.c 		if (tios.c_oflag & OXTABS)
c_oflag           118 compat/hpux/hpux_tty.c 			htios.c_oflag |= TIO_TAB3;
c_oflag           245 compat/hpux/hpux_tty.c 		tios.c_oflag &= ~(OPOST|ONLCR|OXTABS);
c_oflag           246 compat/hpux/hpux_tty.c 		if (htios.c_oflag & TIO_OPOST)
c_oflag           247 compat/hpux/hpux_tty.c 			tios.c_oflag |= OPOST;
c_oflag           248 compat/hpux/hpux_tty.c 		if (htios.c_oflag & TIO_ONLCR)
c_oflag           249 compat/hpux/hpux_tty.c 			tios.c_oflag |= ONLCR;
c_oflag           250 compat/hpux/hpux_tty.c 		if (htios.c_oflag & TIO_TAB3)
c_oflag           251 compat/hpux/hpux_tty.c 			tios.c_oflag |= OXTABS;
c_oflag           391 compat/hpux/hpux_tty.c 	tios->c_oflag = tio->c_oflag;
c_oflag           421 compat/hpux/hpux_tty.c 	tio->c_oflag = tios->c_oflag;
c_oflag           143 compat/ibcs2/ibcs2_ioctl.c 	l = st->c_oflag;	r = 0;
c_oflag           147 compat/ibcs2/ibcs2_ioctl.c 	bt->c_oflag = r;
c_oflag           237 compat/ibcs2/ibcs2_ioctl.c 	l = bt->c_oflag;	r = 0;
c_oflag           241 compat/ibcs2/ibcs2_ioctl.c 	st->c_oflag = r;
c_oflag           311 compat/ibcs2/ibcs2_ioctl.c 	t->c_oflag = ts->c_oflag;
c_oflag           325 compat/ibcs2/ibcs2_ioctl.c 	ts->c_oflag = t->c_oflag;
c_oflag            48 compat/ibcs2/ibcs2_termios.h 	u_short	c_oflag;
c_oflag            57 compat/ibcs2/ibcs2_termios.h 	ibcs2_tcflag_t	c_oflag;
c_oflag           105 compat/linux/linux_termios.c 	bts->c_oflag = 0;
c_oflag           106 compat/linux/linux_termios.c 	bts->c_oflag |= cvtto_bsd_mask(lt->c_oflag, LINUX_OPOST, OPOST);
c_oflag           107 compat/linux/linux_termios.c 	bts->c_oflag |= cvtto_bsd_mask(lt->c_oflag, LINUX_ONLCR, ONLCR);
c_oflag           108 compat/linux/linux_termios.c 	bts->c_oflag |= cvtto_bsd_mask(lt->c_oflag, LINUX_XTABS, OXTABS);
c_oflag           188 compat/linux/linux_termios.c 	lt->c_oflag = 0;
c_oflag           189 compat/linux/linux_termios.c 	lt->c_oflag |= cvtto_linux_mask(bts->c_oflag, OPOST, LINUX_OPOST);
c_oflag           190 compat/linux/linux_termios.c 	lt->c_oflag |= cvtto_linux_mask(bts->c_oflag, ONLCR, LINUX_ONLCR);
c_oflag           191 compat/linux/linux_termios.c 	lt->c_oflag |= cvtto_linux_mask(bts->c_oflag, OXTABS, LINUX_XTABS);
c_oflag           274 compat/linux/linux_termios.c 	bts->c_oflag = 0;
c_oflag           275 compat/linux/linux_termios.c 	bts->c_oflag |= cvtto_bsd_mask(lts->c_oflag, LINUX_OPOST, OPOST);
c_oflag           276 compat/linux/linux_termios.c 	bts->c_oflag |= cvtto_bsd_mask(lts->c_oflag, LINUX_ONLCR, ONLCR);
c_oflag           277 compat/linux/linux_termios.c 	bts->c_oflag |= cvtto_bsd_mask(lts->c_oflag, LINUX_XTABS, OXTABS);
c_oflag           362 compat/linux/linux_termios.c 	lts->c_oflag = 0;
c_oflag           363 compat/linux/linux_termios.c 	lts->c_oflag |= cvtto_linux_mask(bts->c_oflag, OPOST, LINUX_OPOST);
c_oflag           364 compat/linux/linux_termios.c 	lts->c_oflag |= cvtto_linux_mask(bts->c_oflag, ONLCR, LINUX_ONLCR);
c_oflag           365 compat/linux/linux_termios.c 	lts->c_oflag |= cvtto_linux_mask(bts->c_oflag, OXTABS, LINUX_XTABS);
c_oflag            58 compat/linux/linux_termios.h 	unsigned short c_oflag;
c_oflag            71 compat/linux/linux_termios.h 	linux_tcflag_t c_oflag;
c_oflag            84 compat/sunos/sunos.h 	u_short	c_oflag;
c_oflag            98 compat/sunos/sunos.h 	u_long	c_oflag;
c_oflag           142 compat/sunos/sunos_ioctl.c 	l = st->c_oflag;
c_oflag           169 compat/sunos/sunos_ioctl.c 	bt->c_oflag = r;
c_oflag           265 compat/sunos/sunos_ioctl.c 	l = bt->c_oflag;
c_oflag           292 compat/sunos/sunos_ioctl.c 	st->c_oflag = r;
c_oflag           375 compat/sunos/sunos_ioctl.c 	t->c_oflag = ts->c_oflag;
c_oflag           388 compat/sunos/sunos_ioctl.c 	ts->c_oflag = t->c_oflag;
c_oflag           156 compat/svr4/svr4_termios.c 	    st->c_iflag, st->c_oflag, st->c_cflag, st->c_lflag);
c_oflag           170 compat/svr4/svr4_termios.c 	    bt->c_iflag, bt->c_oflag, bt->c_cflag, bt->c_lflag, bt->c_ispeed,
c_oflag           310 compat/svr4/svr4_termios.c 	svr4_to_bsd_flag1(c_oflag,O,POST);
c_oflag           311 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,O,LCUC);
c_oflag           312 compat/svr4/svr4_termios.c 	svr4_to_bsd_flag1(c_oflag,O,NLCR);
c_oflag           313 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,O,CRNL);
c_oflag           314 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,O,NOCR);
c_oflag           315 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,O,NLRET);
c_oflag           316 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,O,FILL);
c_oflag           317 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,O,FDEL);
c_oflag           318 compat/svr4/svr4_termios.c 	undefined_flag2(c_oflag,N,LDLY,N,L0,N,L1);
c_oflag           319 compat/svr4/svr4_termios.c 	undefined_flag4(c_oflag,C,RDLY,C,R0,C,R1,C,R2,C,R3);
c_oflag           320 compat/svr4/svr4_termios.c 	undefined_flag4(c_oflag,T,ABDLY,T,AB0,T,AB1,T,AB2,T,AB3);
c_oflag           327 compat/svr4/svr4_termios.c 	if ((st->c_oflag & SVR4_XTABS) == SVR4_XTABS)
c_oflag           328 compat/svr4/svr4_termios.c 		bt->c_oflag |= OXTABS;
c_oflag           330 compat/svr4/svr4_termios.c 		bt->c_oflag &= ~OXTABS;
c_oflag           331 compat/svr4/svr4_termios.c 	undefined_flag2(c_oflag,B,SDLY,B,S0,B,S1);
c_oflag           332 compat/svr4/svr4_termios.c 	undefined_flag2(c_oflag,V,TDLY,V,T0,V,T1);
c_oflag           333 compat/svr4/svr4_termios.c 	undefined_flag2(c_oflag,F,FDLY,F,F0,F,F1);
c_oflag           334 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,P,AGEOUT);
c_oflag           335 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,W,RAP);
c_oflag           422 compat/svr4/svr4_termios.c 	bsd_to_svr4_flag1(c_oflag,O,POST);
c_oflag           423 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,O,LCUC);
c_oflag           424 compat/svr4/svr4_termios.c 	bsd_to_svr4_flag1(c_oflag,O,NLCR);
c_oflag           425 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,O,CRNL);
c_oflag           426 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,O,NOCR);
c_oflag           427 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,O,NLRET);
c_oflag           428 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,O,FILL);
c_oflag           429 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,O,FDEL);
c_oflag           430 compat/svr4/svr4_termios.c 	undefined_flag2(c_oflag,N,LDLY,N,L0,N,L1);
c_oflag           431 compat/svr4/svr4_termios.c 	undefined_flag4(c_oflag,C,RDLY,C,R0,C,R1,C,R2,C,R3);
c_oflag           432 compat/svr4/svr4_termios.c 	undefined_flag4(c_oflag,T,ABDLY,T,AB0,T,AB1,T,AB2,T,AB3);
c_oflag           438 compat/svr4/svr4_termios.c 	bsd_to_svr4_flag1(c_oflag,OX,TABS);
c_oflag           439 compat/svr4/svr4_termios.c 	undefined_flag2(c_oflag,B,SDLY,B,S0,B,S1);
c_oflag           440 compat/svr4/svr4_termios.c 	undefined_flag2(c_oflag,V,TDLY,V,T0,V,T1);
c_oflag           441 compat/svr4/svr4_termios.c 	undefined_flag2(c_oflag,F,FDLY,F,F0,F,F1);
c_oflag           442 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,P,AGEOUT);
c_oflag           443 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,W,RAP);
c_oflag           462 compat/svr4/svr4_termios.c 	undefined_flag1(c_oflag,P,AREXT);
c_oflag           491 compat/svr4/svr4_termios.c 	ts->c_oflag = (svr4_tcflag_t)t->c_oflag;
c_oflag           509 compat/svr4/svr4_termios.c 	t->c_oflag = (u_short)ts->c_oflag;
c_oflag            44 compat/svr4/svr4_termios.h 	svr4_tcflag_t	c_oflag;
c_oflag            52 compat/svr4/svr4_termios.h 	u_short		c_oflag;
c_oflag           155 compat/ultrix/ultrix_ioctl.c 	l = st->c_oflag;
c_oflag           182 compat/ultrix/ultrix_ioctl.c 	bt->c_oflag = r;
c_oflag           287 compat/ultrix/ultrix_ioctl.c 	l = bt->c_oflag;
c_oflag           314 compat/ultrix/ultrix_ioctl.c 	st->c_oflag = r;
c_oflag           417 compat/ultrix/ultrix_ioctl.c 	t->c_oflag = ts->c_oflag;
c_oflag           433 compat/ultrix/ultrix_ioctl.c 	ts->c_oflag = t->c_oflag;
c_oflag            19 compat/ultrix/ultrix_tty.h 	u_short	c_oflag;
c_oflag            36 compat/ultrix/ultrix_tty.h 	u_long	c_oflag;
c_oflag           920 kern/tty.c     		tp->t_oflag = t->c_oflag;
c_oflag           191 sys/termios.h  	tcflag_t	c_oflag;	/* output flags */
c_oflag           159 sys/tty.h      #define	t_oflag		t_termios.c_oflag