Lines Matching refs:cntrl
106 struct termios cntrl; in v831_disconnect() local
115 (void) ioctl(FD, TCGETS, &cntrl); in v831_disconnect()
116 (void) cfsetospeed(&cntrl, B0); in v831_disconnect()
117 cntrl.c_cflag &= ~XCLUDE; in v831_disconnect()
118 (void) ioctl(FD, TCSETSF, &cntrl); in v831_disconnect()
169 struct termios cntrl; in dialit() local
186 (void) ioctl(AC, TCGETS, &cntrl); in dialit()
187 (void) cfsetospeed(&cntrl, B0); in dialit()
188 (void) cfsetispeed(&cntrl, B0); in dialit()
189 cntrl.c_cflag &= ~(CSIZE|PARENB|PARODD); in dialit()
190 (void) cfsetospeed(&cntrl, B2400); in dialit()
191 cntrl.c_cflag |= CS8; in dialit()
192 cntrl.c_iflag &= IXOFF|IXANY; in dialit()
193 cntrl.c_lflag &= ~(ICANON|ISIG); in dialit()
194 cntrl.c_oflag = 0; in dialit()
195 cntrl.c_cc[VMIN] = cntrl.c_cc[VTIME] = 0; in dialit()
196 (void) ioctl(AC, TCSETSF, &cntrl); in dialit()