Lines Matching full:term
47 static struct termios term; in VGLKeyboardInit() local
52 term = VGLKeyboardTty; in VGLKeyboardInit()
53 cfmakeraw(&term); in VGLKeyboardInit()
54 term.c_iflag = IGNPAR | IGNBRK; in VGLKeyboardInit()
55 term.c_oflag = OPOST | ONLCR; in VGLKeyboardInit()
56 term.c_cflag = CREAD | CS8; in VGLKeyboardInit()
57 term.c_lflag &= ~(ICANON | ECHO | ISIG); in VGLKeyboardInit()
58 term.c_cc[VTIME] = 0; in VGLKeyboardInit()
59 term.c_cc[VMIN] = 0; in VGLKeyboardInit()
60 cfsetispeed(&term, 9600); in VGLKeyboardInit()
61 cfsetospeed(&term, 9600); in VGLKeyboardInit()
62 tcsetattr(0, TCSANOW | TCSAFLUSH, &term); in VGLKeyboardInit()