Searched refs:hStdIn (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/chardev/ |
H A D | char-win-stdio.c | 35 HANDLE hStdIn; member 56 ret = ReadConsoleInput(stdio->hStdIn, buf, ARRAY_SIZE(buf), &dwSize); in DECLARE_INSTANCE_CHECKER() 60 qemu_del_wait_object(stdio->hStdIn, NULL, NULL); in DECLARE_INSTANCE_CHECKER() 90 ret = ReadFile(stdio->hStdIn, &stdio->win_stdio_buf, 1, &dwSize, NULL); in win_stdio_thread() 136 GetConsoleMode(stdio->hStdIn, &dwMode); in qemu_chr_set_echo_win_stdio() 139 SetConsoleMode(stdio->hStdIn, dwMode | ENABLE_ECHO_INPUT); in qemu_chr_set_echo_win_stdio() 141 SetConsoleMode(stdio->hStdIn, dwMode & ~ENABLE_ECHO_INPUT); in qemu_chr_set_echo_win_stdio() 156 stdio->hStdIn = GetStdHandle(STD_INPUT_HANDLE); in qemu_chr_open_stdio() 157 if (stdio->hStdIn == INVALID_HANDLE_VALUE) { in qemu_chr_open_stdio() 162 is_console = GetConsoleMode(stdio->hStdIn, &dwMode) != 0; in qemu_chr_open_stdio() [all …]
|