Home | History | Annotate | Download | only in pppd

Lines Matching refs:tios

1186     struct termios tios;
1191 if (!sync_serial && tcgetattr(fd, &tios) < 0)
1204 inittermios = tios;
1212 tios.c_cflag &= ~(CSIZE | CSTOPB | PARENB | CLOCAL);
1215 tios.c_cflag |= CRTSCTS;
1217 tios.c_cflag &= ~CRTSCTS;
1228 tios.c_cflag |= CS8 | CREAD | HUPCL;
1230 tios.c_cflag |= CLOCAL;
1231 tios.c_iflag = IGNBRK | IGNPAR;
1232 tios.c_oflag = 0;
1233 tios.c_lflag = 0;
1234 tios.c_cc[VMIN] = 1;
1235 tios.c_cc[VTIME] = 0;
1238 tios.c_iflag |= IXON | IXOFF;
1239 tios.c_cc[VSTOP] = 0x13; /* DC3 = XOFF = ^S */
1240 tios.c_cc[VSTART] = 0x11; /* DC1 = XON = ^Q */
1245 cfsetospeed(&tios, speed);
1246 cfsetispeed(&tios, speed);
1248 speed = cfgetospeed(&tios);
1257 if (!sync_serial && tcsetattr(fd, TCSAFLUSH, &tios) < 0)
2742 struct termios tios;