Home
last modified time | relevance | path

Searched refs:stdin_handle (Results 1 – 7 of 7) sorted by relevance

/external/libxkbcommon/tools/
Dtools-common.c167 HANDLE stdin_handle = GetStdHandle(STD_INPUT_HANDLE); in tools_disable_stdin_echo() local
169 GetConsoleMode(stdin_handle, &mode); in tools_disable_stdin_echo()
170 SetConsoleMode(stdin_handle, mode & ~ENABLE_ECHO_INPUT); in tools_disable_stdin_echo()
176 HANDLE stdin_handle = GetStdHandle(STD_INPUT_HANDLE); in tools_enable_stdin_echo() local
178 GetConsoleMode(stdin_handle, &mode); in tools_enable_stdin_echo()
179 SetConsoleMode(stdin_handle, mode | ENABLE_ECHO_INPUT); in tools_enable_stdin_echo()
/external/llvm-project/lldb/source/Host/windows/
DProcessLauncherWindows.cpp73 HANDLE stdin_handle = GetStdioHandle(launch_info, STDIN_FILENO); in LaunchProcess() local
82 stdin_handle ? stdin_handle : ::GetStdHandle(STD_INPUT_HANDLE); in LaunchProcess()
136 if (stdin_handle) in LaunchProcess()
137 ::CloseHandle(stdin_handle); in LaunchProcess()
/external/rust/crates/zip/examples/
Dstdin_info.rs9 let mut stdin_handle = stdin.lock(); in real_main() localVariable
13 match zip::read::read_zipfile_from_stream(&mut stdin_handle) { in real_main()
/external/curl/lib/
Dtelnet.c1261 HANDLE stdin_handle; in telnet_do() local
1312 stdin_handle = GetStdHandle(STD_INPUT_HANDLE); in telnet_do()
1316 objs[1] = stdin_handle; in telnet_do()
1320 if(GetFileType(stdin_handle) == FILE_TYPE_PIPE || in telnet_do()
1363 if(!PeekNamedPipe(stdin_handle, NULL, 0, NULL, in telnet_do()
1373 if(!ReadFile(stdin_handle, buf, buf_size, in telnet_do()
1392 if(!ReadFile(stdin_handle, buf, buf_size, in telnet_do()
/external/libchrome/base/process/
Dlaunch.h147 HANDLE stdin_handle = nullptr; member
/external/rust/crates/bindgen/src/
Dlib.rs2413 let stdin_handle = ::std::thread::spawn(move || { in rustfmt_generated_string() localVariable
2422 let source = stdin_handle.join().expect( in rustfmt_generated_string()
/external/libchrome/base/test/launcher/
Dtest_launcher.cc450 options.stdin_handle = INVALID_HANDLE_VALUE; in DoLaunchChildTestProcess()