htios 76 compat/hpux/hpux_tty.c struct hpux_termios htios;
htios 96 compat/hpux/hpux_tty.c bzero((char *)&htios, sizeof htios);
htios 101 compat/hpux/hpux_tty.c htios.c_iflag = tios.c_iflag & 0x1ff;
htios 103 compat/hpux/hpux_tty.c htios.c_iflag |= TIO_IXON;
htios 105 compat/hpux/hpux_tty.c htios.c_iflag |= TIO_IXOFF;
htios 107 compat/hpux/hpux_tty.c htios.c_iflag |= TIO_IXANY;
htios 114 compat/hpux/hpux_tty.c htios.c_oflag |= TIO_OPOST;
htios 116 compat/hpux/hpux_tty.c htios.c_oflag |= TIO_ONLCR;
htios 118 compat/hpux/hpux_tty.c htios.c_oflag |= TIO_TAB3;
htios 123 compat/hpux/hpux_tty.c htios.c_cflag = bsdtohpuxbaud(tios.c_ospeed);
htios 126 compat/hpux/hpux_tty.c htios.c_cflag |= TIO_CS5; break;
htios 128 compat/hpux/hpux_tty.c htios.c_cflag |= TIO_CS6; break;
htios 130 compat/hpux/hpux_tty.c htios.c_cflag |= TIO_CS7; break;
htios 132 compat/hpux/hpux_tty.c htios.c_cflag |= TIO_CS8; break;
htios 135 compat/hpux/hpux_tty.c htios.c_cflag |= TIO_CSTOPB;
htios 137 compat/hpux/hpux_tty.c htios.c_cflag |= TIO_CREAD;
htios 139 compat/hpux/hpux_tty.c htios.c_cflag |= TIO_PARENB;
htios 141 compat/hpux/hpux_tty.c htios.c_cflag |= TIO_PARODD;
htios 143 compat/hpux/hpux_tty.c htios.c_cflag |= TIO_HUPCL;
htios 145 compat/hpux/hpux_tty.c htios.c_cflag |= TIO_CLOCAL;
htios 151 compat/hpux/hpux_tty.c htios.c_lflag |= TIO_ECHOE;
htios 153 compat/hpux/hpux_tty.c htios.c_lflag |= TIO_ECHOK;
htios 155 compat/hpux/hpux_tty.c htios.c_lflag |= TIO_ECHO;
htios 157 compat/hpux/hpux_tty.c htios.c_lflag |= TIO_ECHONL;
htios 159 compat/hpux/hpux_tty.c htios.c_lflag |= TIO_ISIG;
htios 161 compat/hpux/hpux_tty.c htios.c_lflag |= TIO_ICANON;
htios 163 compat/hpux/hpux_tty.c htios.c_lflag |= TIO_NOFLSH;
htios 170 compat/hpux/hpux_tty.c htios.c_reserved = line;
htios 176 compat/hpux/hpux_tty.c htios.c_cc[HPUXVINTR] = tios.c_cc[VINTR];
htios 177 compat/hpux/hpux_tty.c htios.c_cc[HPUXVQUIT] = tios.c_cc[VQUIT];
htios 178 compat/hpux/hpux_tty.c htios.c_cc[HPUXVERASE] = tios.c_cc[VERASE];
htios 179 compat/hpux/hpux_tty.c htios.c_cc[HPUXVKILL] = tios.c_cc[VKILL];
htios 180 compat/hpux/hpux_tty.c htios.c_cc[HPUXVEOF] = tios.c_cc[VEOF];
htios 181 compat/hpux/hpux_tty.c htios.c_cc[HPUXVEOL] = tios.c_cc[VEOL];
htios 182 compat/hpux/hpux_tty.c htios.c_cc[HPUXVEOL2] = tios.c_cc[VEOL2];
htios 183 compat/hpux/hpux_tty.c htios.c_cc[HPUXVSWTCH] = 0;
htios 192 compat/hpux/hpux_tty.c htios.c_cc[HPUXVMINS] = 0;
htios 193 compat/hpux/hpux_tty.c htios.c_cc[HPUXVTIMES] = 0;
htios 195 compat/hpux/hpux_tty.c htios.c_cc[HPUXVMINS] = 6;
htios 196 compat/hpux/hpux_tty.c htios.c_cc[HPUXVTIMES] = 1;
htios 199 compat/hpux/hpux_tty.c htios.c_cc[HPUXVMINS] = tios.c_cc[VMIN];
htios 200 compat/hpux/hpux_tty.c htios.c_cc[HPUXVTIMES] = tios.c_cc[VTIME];
htios 202 compat/hpux/hpux_tty.c htios.c_cc[HPUXVSUSP] = tios.c_cc[VSUSP];
htios 203 compat/hpux/hpux_tty.c htios.c_cc[HPUXVSTART] = tios.c_cc[VSTART];
htios 204 compat/hpux/hpux_tty.c htios.c_cc[HPUXVSTOP] = tios.c_cc[VSTOP];
htios 206 compat/hpux/hpux_tty.c bcopy((char *)&htios, data, sizeof htios);
htios 208 compat/hpux/hpux_tty.c termiostotermio(&htios, (struct hpux_termio *)data);
htios 225 compat/hpux/hpux_tty.c bcopy(data, (char *)&htios, sizeof htios);
htios 228 compat/hpux/hpux_tty.c &htios, &tios);
htios 234 compat/hpux/hpux_tty.c tios.c_iflag |= htios.c_iflag & 0x1ff;
htios 235 compat/hpux/hpux_tty.c if (htios.c_iflag & TIO_IXON)
htios 237 compat/hpux/hpux_tty.c if (htios.c_iflag & TIO_IXOFF)
htios 239 compat/hpux/hpux_tty.c if (htios.c_iflag & TIO_IXANY)
htios 246 compat/hpux/hpux_tty.c if (htios.c_oflag & TIO_OPOST)
htios 248 compat/hpux/hpux_tty.c if (htios.c_oflag & TIO_ONLCR)
htios 250 compat/hpux/hpux_tty.c if (htios.c_oflag & TIO_TAB3)
htios 258 compat/hpux/hpux_tty.c switch (htios.c_cflag & TIO_CSIZE) {
htios 268 compat/hpux/hpux_tty.c if (htios.c_cflag & TIO_CSTOPB)
htios 270 compat/hpux/hpux_tty.c if (htios.c_cflag & TIO_CREAD)
htios 272 compat/hpux/hpux_tty.c if (htios.c_cflag & TIO_PARENB)
htios 274 compat/hpux/hpux_tty.c if (htios.c_cflag & TIO_PARODD)
htios 276 compat/hpux/hpux_tty.c if (htios.c_cflag & TIO_HUPCL)
htios 278 compat/hpux/hpux_tty.c if (htios.c_cflag & TIO_CLOCAL)
htios 286 compat/hpux/hpux_tty.c if (htios.c_lflag & TIO_ECHOE)
htios 288 compat/hpux/hpux_tty.c if (htios.c_lflag & TIO_ECHOK)
htios 290 compat/hpux/hpux_tty.c if (htios.c_lflag & TIO_ECHO)
htios 292 compat/hpux/hpux_tty.c if (htios.c_lflag & TIO_ECHONL)
htios 294 compat/hpux/hpux_tty.c if (htios.c_lflag & TIO_ISIG)
htios 296 compat/hpux/hpux_tty.c if (htios.c_lflag & TIO_ICANON)
htios 298 compat/hpux/hpux_tty.c if (htios.c_lflag & TIO_NOFLSH)
htios 305 compat/hpux/hpux_tty.c tios.c_cc[VINTR] = htios.c_cc[HPUXVINTR];
htios 306 compat/hpux/hpux_tty.c tios.c_cc[VQUIT] = htios.c_cc[HPUXVQUIT];
htios 307 compat/hpux/hpux_tty.c tios.c_cc[VERASE] = htios.c_cc[HPUXVERASE];
htios 308 compat/hpux/hpux_tty.c tios.c_cc[VKILL] = htios.c_cc[HPUXVKILL];
htios 309 compat/hpux/hpux_tty.c tios.c_cc[VEOF] = htios.c_cc[HPUXVEOF];
htios 310 compat/hpux/hpux_tty.c tios.c_cc[VEOL] = htios.c_cc[HPUXVEOL];
htios 311 compat/hpux/hpux_tty.c tios.c_cc[VEOL2] = htios.c_cc[HPUXVEOL2];
htios 312 compat/hpux/hpux_tty.c tios.c_cc[VMIN] = htios.c_cc[HPUXVMINS];
htios 313 compat/hpux/hpux_tty.c tios.c_cc[VTIME] = htios.c_cc[HPUXVTIMES];
htios 314 compat/hpux/hpux_tty.c tios.c_cc[VSUSP] = htios.c_cc[HPUXVSUSP];
htios 315 compat/hpux/hpux_tty.c tios.c_cc[VSTART] = htios.c_cc[HPUXVSTART];
htios 316 compat/hpux/hpux_tty.c tios.c_cc[VSTOP] = htios.c_cc[HPUXVSTOP];
htios 333 compat/hpux/hpux_tty.c line = htios.c_reserved;
htios 353 compat/hpux/hpux_tty.c nbio = (htios.c_cc[HPUXVMINS] == 0 &&
htios 354 compat/hpux/hpux_tty.c htios.c_cc[HPUXVTIMES] == 0);