Home | History | Annotate | Download | only in aculib

Lines Matching defs:cntrl

131 	struct termios	cntrl;
139 (void)tcgetattr(FD, &cntrl);
140 (void)cfsetospeed(&cntrl, 0);
141 (void)cfsetispeed(&cntrl, 0);
142 (void)tcsetattr(FD, TCSAFLUSH, &cntrl);
189 struct termios cntrl;
206 (void)tcgetattr(AC, &cntrl);
207 (void)cfsetospeed(&cntrl, B2400);
208 (void)cfsetispeed(&cntrl, B2400);
209 cntrl.c_cflag |= PARODD | PARENB;
210 cntrl.c_lflag &= ~(ISIG | ICANON);
211 (void)tcsetattr(AC, TCSANOW, &cntrl);