Home | History | Annotate | Download | only in getty

Lines Matching defs:tmode

93 struct termios tmode, omode;
132 #define ERASE tmode.c_cc[VERASE]
133 #define KILL tmode.c_cc[VKILL]
134 #define EOT tmode.c_cc[VEOF]
247 if (tcgetattr(0, &tmode) < 0) {
251 omode = tmode;
271 (void)cfsetispeed(&tmode, (speed_t)IS);
273 (void)cfsetispeed(&tmode, (speed_t)SP);
275 (void)cfsetospeed(&tmode, (speed_t)OS);
277 (void)cfsetospeed(&tmode, (speed_t)SP);
280 if (tcsetattr(0, TCSANOW, &tmode) < 0) {
318 tmode.c_ispeed = tmode.c_ospeed = 0;
319 (void)tcsetattr(0, TCSANOW, &tmode);
364 tmode.c_iflag |= ICRNL;
365 tmode.c_oflag |= ONLCR;
369 tmode.sg_flags |= LCASE;
371 tmode.sg_flags &= ~LCASE;
373 if (tcsetattr(0, TCSANOW, &tmode) < 0) {
425 if (tcsetattr(0, TCSANOW, &tmode) < 0) {
481 if (cfgetospeed(&tmode) >= 1200)
490 if (cfgetospeed(&tmode) < 1200)