Lines Matching defs:ttymodes
111 static struct termio ttymodes;
371 (void) ioctl(fd, TCGETA, &ttymodes);
372 ttymodes.c_iflag &= ~RESET_IFLAG;
373 ttymodes.c_iflag |= SET_IFLAG;
374 ttymodes.c_oflag &= ~RESET_OFLAG;
375 ttymodes.c_oflag |= SET_OFLAG;
376 ttymodes.c_lflag &= ~RESET_LFLAG;
377 ttymodes.c_lflag |= SET_LFLAG;
378 ttymodes.c_cc[VERASE] = CERASE;
379 ttymodes.c_cc[VKILL] = CKILL;
380 ttymodes.c_cc[VQUIT] = CQUIT;
381 ttymodes.c_cc[VINTR] = CINTR;
382 ttymodes.c_cc[VEOF] = CEOF;
383 ttymodes.c_cc[VEOL] = CNUL;
384 (void) ioctl(fd, TCSETAF, &ttymodes);
671 ttyb = ttymodes;
689 (void) ioctl(fileno(fi), TCSETAW, &ttymodes);