Lines Matching refs:tty
33 public HANDLE tty; variable
39 public int tty; variable
109 tty = CreateFile("CONIN$", GENERIC_READ | GENERIC_WRITE, in open_getchr()
112 GetConsoleMode(tty, &init_console_input_mode); in open_getchr()
119 SetConsoleMode(tty, curr_console_input_mode); in open_getchr()
129 tty = open("CON", OPEN_READ); in open_getchr()
138 tty = open_tty(); in open_getchr()
149 SetConsoleMode(tty, init_console_input_mode); in close_getchr()
150 CloseHandle(tty); in close_getchr()
163 SetConsoleMode(tty, curr_console_input_mode); in pclose()
214 result = iread(tty, &uc, sizeof(char)); in getchr()