tios               75 compat/hpux/hpux_tty.c 	struct termios tios;
tios               94 compat/hpux/hpux_tty.c 		if ((error = (*ioctlrout)(fp, TIOCGETA, (caddr_t)&tios, p)))
tios              101 compat/hpux/hpux_tty.c 		htios.c_iflag = tios.c_iflag & 0x1ff;
tios              102 compat/hpux/hpux_tty.c 		if (tios.c_iflag & IXON)
tios              104 compat/hpux/hpux_tty.c 		if (tios.c_iflag & IXOFF)
tios              106 compat/hpux/hpux_tty.c 		if (tios.c_iflag & IXANY)
tios              113 compat/hpux/hpux_tty.c 		if (tios.c_oflag & OPOST)
tios              115 compat/hpux/hpux_tty.c 		if (tios.c_oflag & ONLCR)
tios              117 compat/hpux/hpux_tty.c 		if (tios.c_oflag & OXTABS)
tios              123 compat/hpux/hpux_tty.c 		htios.c_cflag = bsdtohpuxbaud(tios.c_ospeed);
tios              124 compat/hpux/hpux_tty.c 		switch (tios.c_cflag & CSIZE) {
tios              134 compat/hpux/hpux_tty.c 		if (tios.c_cflag & CSTOPB)
tios              136 compat/hpux/hpux_tty.c 		if (tios.c_cflag & CREAD)
tios              138 compat/hpux/hpux_tty.c 		if (tios.c_cflag & PARENB)
tios              140 compat/hpux/hpux_tty.c 		if (tios.c_cflag & PARODD)
tios              142 compat/hpux/hpux_tty.c 		if (tios.c_cflag & HUPCL)
tios              144 compat/hpux/hpux_tty.c 		if (tios.c_cflag & CLOCAL)
tios              150 compat/hpux/hpux_tty.c 		if (tios.c_lflag & ECHOE)
tios              152 compat/hpux/hpux_tty.c 		if (tios.c_lflag & ECHOK)
tios              154 compat/hpux/hpux_tty.c 		if (tios.c_lflag & ECHO)
tios              156 compat/hpux/hpux_tty.c 		if (tios.c_lflag & ECHONL)
tios              158 compat/hpux/hpux_tty.c 		if (tios.c_lflag & ISIG)
tios              160 compat/hpux/hpux_tty.c 		if (tios.c_lflag & ICANON)
tios              162 compat/hpux/hpux_tty.c 		if (tios.c_lflag & NOFLSH)
tios              176 compat/hpux/hpux_tty.c 		htios.c_cc[HPUXVINTR] = tios.c_cc[VINTR];
tios              177 compat/hpux/hpux_tty.c 		htios.c_cc[HPUXVQUIT] = tios.c_cc[VQUIT];
tios              178 compat/hpux/hpux_tty.c 		htios.c_cc[HPUXVERASE] = tios.c_cc[VERASE];
tios              179 compat/hpux/hpux_tty.c 		htios.c_cc[HPUXVKILL] = tios.c_cc[VKILL];
tios              180 compat/hpux/hpux_tty.c 		htios.c_cc[HPUXVEOF] = tios.c_cc[VEOF];
tios              181 compat/hpux/hpux_tty.c 		htios.c_cc[HPUXVEOL] = tios.c_cc[VEOL];
tios              182 compat/hpux/hpux_tty.c 		htios.c_cc[HPUXVEOL2] = tios.c_cc[VEOL2];
tios              199 compat/hpux/hpux_tty.c 		htios.c_cc[HPUXVMINS] = tios.c_cc[VMIN];
tios              200 compat/hpux/hpux_tty.c 		htios.c_cc[HPUXVTIMES] = tios.c_cc[VTIME];
tios              202 compat/hpux/hpux_tty.c 		htios.c_cc[HPUXVSUSP] = tios.c_cc[VSUSP];
tios              203 compat/hpux/hpux_tty.c 		htios.c_cc[HPUXVSTART] = tios.c_cc[VSTART];
tios              204 compat/hpux/hpux_tty.c 		htios.c_cc[HPUXVSTOP] = tios.c_cc[VSTOP];
tios              222 compat/hpux/hpux_tty.c 		if ((error = (*ioctlrout)(fp, TIOCGETA, (caddr_t)&tios, p)))
tios              228 compat/hpux/hpux_tty.c 			    &htios, &tios);
tios              233 compat/hpux/hpux_tty.c 		tios.c_iflag &= ~(IXON|IXOFF|IXANY|0x1ff);
tios              234 compat/hpux/hpux_tty.c 		tios.c_iflag |= htios.c_iflag & 0x1ff;
tios              236 compat/hpux/hpux_tty.c 			tios.c_iflag |= IXON;
tios              238 compat/hpux/hpux_tty.c 			tios.c_iflag |= IXOFF;
tios              240 compat/hpux/hpux_tty.c 			tios.c_iflag |= IXANY;
tios              245 compat/hpux/hpux_tty.c 		tios.c_oflag &= ~(OPOST|ONLCR|OXTABS);
tios              247 compat/hpux/hpux_tty.c 			tios.c_oflag |= OPOST;
tios              249 compat/hpux/hpux_tty.c 			tios.c_oflag |= ONLCR;
tios              251 compat/hpux/hpux_tty.c 			tios.c_oflag |= OXTABS;
tios              256 compat/hpux/hpux_tty.c 		tios.c_cflag &=
tios              260 compat/hpux/hpux_tty.c 			tios.c_cflag |= CS5; break;
tios              262 compat/hpux/hpux_tty.c 			tios.c_cflag |= CS6; break;
tios              264 compat/hpux/hpux_tty.c 			tios.c_cflag |= CS7; break;
tios              266 compat/hpux/hpux_tty.c 			tios.c_cflag |= CS8; break;
tios              269 compat/hpux/hpux_tty.c 			tios.c_cflag |= CSTOPB;
tios              271 compat/hpux/hpux_tty.c 			tios.c_cflag |= CREAD;
tios              273 compat/hpux/hpux_tty.c 			tios.c_cflag |= PARENB;
tios              275 compat/hpux/hpux_tty.c 			tios.c_cflag |= PARODD;
tios              277 compat/hpux/hpux_tty.c 			tios.c_cflag |= HUPCL;
tios              279 compat/hpux/hpux_tty.c 			tios.c_cflag |= CLOCAL;
tios              285 compat/hpux/hpux_tty.c 		tios.c_lflag &= ~(ECHOE|ECHOK|ECHO|ISIG|ICANON|IEXTEN|NOFLSH);
tios              287 compat/hpux/hpux_tty.c 			tios.c_lflag |= ECHOE;
tios              289 compat/hpux/hpux_tty.c 			tios.c_lflag |= ECHOK;
tios              291 compat/hpux/hpux_tty.c 			tios.c_lflag |= ECHO;
tios              293 compat/hpux/hpux_tty.c 			tios.c_lflag |= ECHONL;
tios              295 compat/hpux/hpux_tty.c 			tios.c_lflag |= ISIG;
tios              297 compat/hpux/hpux_tty.c 			tios.c_lflag |= (ICANON|IEXTEN);
tios              299 compat/hpux/hpux_tty.c 			tios.c_lflag |= NOFLSH;
tios              305 compat/hpux/hpux_tty.c 		tios.c_cc[VINTR] = htios.c_cc[HPUXVINTR];
tios              306 compat/hpux/hpux_tty.c 		tios.c_cc[VQUIT] = htios.c_cc[HPUXVQUIT];
tios              307 compat/hpux/hpux_tty.c 		tios.c_cc[VERASE] = htios.c_cc[HPUXVERASE];
tios              308 compat/hpux/hpux_tty.c 		tios.c_cc[VKILL] = htios.c_cc[HPUXVKILL];
tios              309 compat/hpux/hpux_tty.c 		tios.c_cc[VEOF] = htios.c_cc[HPUXVEOF];
tios              310 compat/hpux/hpux_tty.c 		tios.c_cc[VEOL] = htios.c_cc[HPUXVEOL];
tios              311 compat/hpux/hpux_tty.c 		tios.c_cc[VEOL2] = htios.c_cc[HPUXVEOL2];
tios              312 compat/hpux/hpux_tty.c 		tios.c_cc[VMIN] = htios.c_cc[HPUXVMINS];
tios              313 compat/hpux/hpux_tty.c 		tios.c_cc[VTIME] = htios.c_cc[HPUXVTIMES];
tios              314 compat/hpux/hpux_tty.c 		tios.c_cc[VSUSP] = htios.c_cc[HPUXVSUSP];
tios              315 compat/hpux/hpux_tty.c 		tios.c_cc[VSTART] = htios.c_cc[HPUXVSTART];
tios              316 compat/hpux/hpux_tty.c 		tios.c_cc[VSTOP] = htios.c_cc[HPUXVSTOP];
tios              327 compat/hpux/hpux_tty.c 		error = (*ioctlrout)(fp, com, (caddr_t)&tios, p);
tios              382 compat/hpux/hpux_tty.c termiototermios(tio, tios, bsdtios)
tios              384 compat/hpux/hpux_tty.c 	struct hpux_termios *tios;
tios              389 compat/hpux/hpux_tty.c 	bzero((char *)tios, sizeof *tios);
tios              390 compat/hpux/hpux_tty.c 	tios->c_iflag = tio->c_iflag;
tios              391 compat/hpux/hpux_tty.c 	tios->c_oflag = tio->c_oflag;
tios              392 compat/hpux/hpux_tty.c 	tios->c_cflag = tio->c_cflag;
tios              393 compat/hpux/hpux_tty.c 	tios->c_lflag = tio->c_lflag;
tios              394 compat/hpux/hpux_tty.c 	tios->c_reserved = tio->c_line;
tios              396 compat/hpux/hpux_tty.c 		tios->c_cc[i] = tio->c_cc[i];
tios              397 compat/hpux/hpux_tty.c 	if (tios->c_lflag & TIO_ICANON) {
tios              398 compat/hpux/hpux_tty.c 		tios->c_cc[HPUXVEOF] = tio->c_cc[HPUXVEOF];
tios              399 compat/hpux/hpux_tty.c 		tios->c_cc[HPUXVEOL] = tio->c_cc[HPUXVEOL];
tios              400 compat/hpux/hpux_tty.c 		tios->c_cc[HPUXVMINS] = 0;
tios              401 compat/hpux/hpux_tty.c 		tios->c_cc[HPUXVTIMES] = 0;
tios              403 compat/hpux/hpux_tty.c 		tios->c_cc[HPUXVEOF] = 0;
tios              404 compat/hpux/hpux_tty.c 		tios->c_cc[HPUXVEOL] = 0;
tios              405 compat/hpux/hpux_tty.c 		tios->c_cc[HPUXVMINS] = tio->c_cc[HPUXVMIN];
tios              406 compat/hpux/hpux_tty.c 		tios->c_cc[HPUXVTIMES] = tio->c_cc[HPUXVTIME];
tios              408 compat/hpux/hpux_tty.c 	tios->c_cc[HPUXVSUSP] = bsdtios->c_cc[VSUSP];
tios              409 compat/hpux/hpux_tty.c 	tios->c_cc[HPUXVSTART] = bsdtios->c_cc[VSTART];
tios              410 compat/hpux/hpux_tty.c 	tios->c_cc[HPUXVSTOP] = bsdtios->c_cc[VSTOP];
tios              414 compat/hpux/hpux_tty.c termiostotermio(tios, tio)
tios              415 compat/hpux/hpux_tty.c 	struct hpux_termios *tios;
tios              420 compat/hpux/hpux_tty.c 	tio->c_iflag = tios->c_iflag;
tios              421 compat/hpux/hpux_tty.c 	tio->c_oflag = tios->c_oflag;
tios              422 compat/hpux/hpux_tty.c 	tio->c_cflag = tios->c_cflag;
tios              423 compat/hpux/hpux_tty.c 	tio->c_lflag = tios->c_lflag;
tios              424 compat/hpux/hpux_tty.c 	tio->c_line = tios->c_reserved;
tios              426 compat/hpux/hpux_tty.c 		tio->c_cc[i] = tios->c_cc[i];
tios              427 compat/hpux/hpux_tty.c 	if (tios->c_lflag & TIO_ICANON) {
tios              428 compat/hpux/hpux_tty.c 		tio->c_cc[HPUXVEOF] = tios->c_cc[HPUXVEOF];
tios              429 compat/hpux/hpux_tty.c 		tio->c_cc[HPUXVEOL] = tios->c_cc[HPUXVEOL];
tios              431 compat/hpux/hpux_tty.c 		tio->c_cc[HPUXVMIN] = tios->c_cc[HPUXVMINS];
tios              432 compat/hpux/hpux_tty.c 		tio->c_cc[HPUXVTIME] = tios->c_cc[HPUXVTIMES];