Home
last modified time | relevance | path

Searched refs:hstdin (Results 1 – 25 of 32) sorted by relevance

12

/dports/games/0ad/0ad-0.0.23b-alpha/build/premake/premake5/src/host/
H A Dos_getpass.c16 HANDLE hstdin = GetStdHandle(STD_INPUT_HANDLE); in os_getpass() local
23 GetConsoleMode(hstdin, &mode); in os_getpass()
24 SetConsoleMode(hstdin, ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT); in os_getpass()
25 ReadConsoleA(hstdin, buffer, sizeof (buffer), &read_chars, NULL); in os_getpass()
26 SetConsoleMode(hstdin, mode); in os_getpass()
/dports/devel/premake5/premake-5.0.0-alpha16-src/src/host/
H A Dos_getpass.c16 HANDLE hstdin = GetStdHandle(STD_INPUT_HANDLE); in os_getpass() local
23 GetConsoleMode(hstdin, &mode); in os_getpass()
24 SetConsoleMode(hstdin, ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT); in os_getpass()
25 ReadConsoleA(hstdin, buffer, sizeof (buffer), &read_chars, NULL); in os_getpass()
26 SetConsoleMode(hstdin, mode); in os_getpass()
/dports/www/davix/davix-0.7.6/deps/simple_getpass/
H A Dsimple_get_pass.cpp59 HANDLE hstdin = GetStdHandle(STD_INPUT_HANDLE); in simple_get_pass() local
62 if (!GetConsoleMode(hstdin, &mode)) in simple_get_pass()
65 if (hstdin == INVALID_HANDLE_VALUE || !(SetConsoleMode(hstdin, 0))) in simple_get_pass()
70 if (!SetConsoleMode(hstdin, mode)) in simple_get_pass()
/dports/www/htdigest/httpd-2.4.6/support/win32/
H A Dwintty.c89 HANDLE hstdin, hstdout, hstderr, hdup; in main() local
169 hstdin = GetStdHandle(STD_INPUT_HANDLE); in main()
170 if (!hstdin || hstdin == INVALID_HANDLE_VALUE) { in main()
174 else if (DuplicateHandle(hproc, hstdin, hproc, &hdup, 0, in main()
176 CloseHandle(hstdin); in main()
177 hstdin = hdup; in main()
181 hstdin, GetLastError()); in main()
259 si.hStdInput = hstdin; in main()
328 while (ReadFile(hstdin, str, sizeof(str), &len, NULL)) in main()
/dports/www/apache24/httpd-2.4.53/support/win32/
H A Dwintty.c89 HANDLE hstdin, hstdout, hstderr, hdup; in main() local
169 hstdin = GetStdHandle(STD_INPUT_HANDLE); in main()
170 if (!hstdin || hstdin == INVALID_HANDLE_VALUE) { in main()
174 else if (DuplicateHandle(hproc, hstdin, hproc, &hdup, 0, in main()
176 CloseHandle(hstdin); in main()
177 hstdin = hdup; in main()
181 hstdin, GetLastError()); in main()
259 si.hStdInput = hstdin; in main()
328 while (ReadFile(hstdin, str, sizeof(str), &len, NULL)) in main()
/dports/security/softhsm2/softhsm-2.6.1/src/bin/common/
H A Dgetpw.cpp66 HANDLE hstdin = GetStdHandle(STD_INPUT_HANDLE); in getpin() local
70 if (!GetConsoleMode(hstdin, &mode)) in getpin()
74 …if (hstdin == INVALID_HANDLE_VALUE || !(SetConsoleMode(hstdin, ENABLE_LINE_INPUT | ENABLE_PROCESSE… in getpin()
125 if (!SetConsoleMode(hstdin, mode)) in getpin()
/dports/audio/baresip/baresip-0.5.8/modules/wincons/
H A Dwincons.c29 HANDLE hstdin; member
85 SetConsoleMode(st->hstdin, 0); in input_thread()
92 ReadConsoleInput(st->hstdin, buf, ARRAY_SIZE(buf), &count); in input_thread()
154 st->hstdin = GetStdHandle(STD_INPUT_HANDLE); in ui_alloc()
157 GetConsoleMode(st->hstdin, &st->mode); in ui_alloc()
/dports/x11/hs-xmobar/xmobar-0.39/src/Xmobar/Plugins/
H A DCommandReader.hs28 (hstdin, hstdout, hstderr, ph) <- runInteractiveCommand p
29 hClose hstdin
/dports/devel/ipython/ipython-7.29.0/IPython/utils/
H A D_process_win32_controller.py233 self.hstdout, self.hstdin, self.hstderr = None, None, None
300 self.hstdin = p_hstdin
415 args=(self.hstdin, self.piProcInfo.hProcess,
531 if self.hstdin:
532 CloseHandle(self.hstdin)
533 self.hstdin = None
/dports/devel/ipython5/ipython-5.10.0/IPython/utils/
H A D_process_win32_controller.py237 self.hstdout, self.hstdin, self.hstderr = None, None, None
304 self.hstdin = p_hstdin
419 args=(self.hstdin, self.piProcInfo.hProcess,
535 if self.hstdin:
536 CloseHandle(self.hstdin)
537 self.hstdin = None
/dports/print/texinfo/texinfo-6.8/info/
H A Dpcterm.c101 static HANDLE hstdin = INVALID_HANDLE_VALUE; variable
127 SetConsoleMode (hstdin, ENABLE_WINDOW_INPUT | ENABLE_MOUSE_INPUT); in w32_info_prep()
144 SetConsoleMode (hstdin, old_inpmode); in w32_info_unprep()
184 hstdin = GetStdHandle (STD_INPUT_HANDLE); in gettextinfo()
187 if (!GetConsoleMode (hstdin, &ignored)) in gettextinfo()
188 hstdin = INVALID_HANDLE_VALUE; in gettextinfo()
521 return hstdin != INVALID_HANDLE_VALUE in w32_our_tty()
522 && hstdin == (HANDLE)_get_osfhandle (fd); in w32_our_tty()
647 while (GetNumberOfConsoleInputEvents (hstdin, &nevents) in w32_kbd_read()
653 if (!ReadConsoleInput (hstdin, &inrec, 1, &nread)) in w32_kbd_read()
/dports/devel/py-twisted/Twisted-22.1.0/src/twisted/internet/
H A D_win32stdio.py52 hstdin = win32api.GetStdHandle(win32api.STD_INPUT_HANDLE)
56 hstdin, self.dataReceived, self.readConnectionLost
/dports/math/vtk6/VTK-6.2.0/ThirdParty/Twisted/twisted/internet/
H A D_win32stdio.py48 hstdin = win32api.GetStdHandle(win32api.STD_INPUT_HANDLE)
52 hstdin, self.dataReceived, self.readConnectionLost)
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/ext/armips/Main/
H A DTests.h27 HANDLE hstdin; variable
H A DTests.cpp70 hstdin = GetStdHandle(STD_INPUT_HANDLE); in initConsole()
112 FlushConsoleInputBuffer(hstdin); in restoreConsole()
/dports/emulators/ppsspp/ppsspp-1.12.3/ext/armips/Main/
H A DTests.h27 HANDLE hstdin; variable
H A DTests.cpp70 hstdin = GetStdHandle(STD_INPUT_HANDLE); in initConsole()
112 FlushConsoleInputBuffer(hstdin); in restoreConsole()
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/ext/armips/Main/
H A DTests.h27 HANDLE hstdin; variable
H A DTests.cpp70 hstdin = GetStdHandle(STD_INPUT_HANDLE); in initConsole()
112 FlushConsoleInputBuffer(hstdin); in restoreConsole()
/dports/editors/vile/vile-9.8v/
H A Dw32misc.c1146 HANDLE hstdin; in w32_keybrd_write() local
1160 hstdin = GetStdHandle(STD_INPUT_HANDLE); in w32_keybrd_write()
1172 rc = WriteConsoleInput(hstdin, &ir, 1, &unused); in w32_keybrd_write()
1186 rc = WriteConsoleInput(hstdin, &ir, 1, &unused); in w32_keybrd_write()
/dports/editors/xvile/vile-9.8v/
H A Dw32misc.c1146 HANDLE hstdin; in w32_keybrd_write() local
1160 hstdin = GetStdHandle(STD_INPUT_HANDLE); in w32_keybrd_write()
1172 rc = WriteConsoleInput(hstdin, &ir, 1, &unused); in w32_keybrd_write()
1186 rc = WriteConsoleInput(hstdin, &ir, 1, &unused); in w32_keybrd_write()
/dports/graphics/epstool/epstool-3.09/src/
H A Depstool.c221 int hstdin, int hstdout, int hstderr,
2588 int hstdin, int hstdout, int hstderr, in exec_program() argument
2609 if ((hstdin != -1)) { in exec_program()
2611 handle = _get_osfhandle(hstdin); in exec_program()
2736 int hstdin, int hstdout, int hstderr, in exec_program() argument
2798 if ((code == 0) && (hstdin != -1)) { in exec_program()
2799 hChildStdinRd = dup2(hstdin, 0); in exec_program()
2871 int hstdin, int hstdout, int hstderr, in exec_program() argument
2930 if ((hstdin != -1)) { in exec_program()
2932 DosDupHandle((HFILE)hstdin, &hStdin); in exec_program()
/dports/chinese/bitchx/bitchx-1.2.1/source/
H A Dterm.c768 HANDLE hstdin=GetStdHandle(STD_INPUT_HANDLE); in term_pause() local
781 if (!(GetConsoleMode(hstdin,&dwmode))) in term_pause()
784 …if (!SetConsoleMode(hstdin, dwmode | ((ENABLE_LINE_INPUT|ENABLE_ECHO_INPUT|ENABLE_PROCESSED_INPUT)… in term_pause()
793 if (!SetConsoleMode(hstdin, dwmode ) ) in term_pause()
2031 HANDLE hstdin=GetStdHandle(STD_INPUT_HANDLE);
2044 if (!(GetConsoleMode(hstdin,&dwmode)))
2047 …if (!SetConsoleMode(hstdin, dwmode | ((ENABLE_LINE_INPUT|ENABLE_ECHO_INPUT|ENABLE_PROCESSED_INPUT)…
2056 if (!SetConsoleMode(hstdin, dwmode ) )
/dports/irc/bitchx/bitchx-1.2.1/source/
H A Dterm.c768 HANDLE hstdin=GetStdHandle(STD_INPUT_HANDLE); in term_pause() local
781 if (!(GetConsoleMode(hstdin,&dwmode))) in term_pause()
784 …if (!SetConsoleMode(hstdin, dwmode | ((ENABLE_LINE_INPUT|ENABLE_ECHO_INPUT|ENABLE_PROCESSED_INPUT)… in term_pause()
793 if (!SetConsoleMode(hstdin, dwmode ) ) in term_pause()
2031 HANDLE hstdin=GetStdHandle(STD_INPUT_HANDLE);
2044 if (!(GetConsoleMode(hstdin,&dwmode)))
2047 …if (!SetConsoleMode(hstdin, dwmode | ((ENABLE_LINE_INPUT|ENABLE_ECHO_INPUT|ENABLE_PROCESSED_INPUT)…
2056 if (!SetConsoleMode(hstdin, dwmode ) )
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/credential_provider/gaiacp/
H A Dgcp_utils.cc347 HRESULT ScopedStartupInfo::SetStdHandles(base::win::ScopedHandle* hstdin, in SetStdHandles() argument
360 if (hstdin && hstdin->IsValid()) { in SetStdHandles()
361 info_.hStdInput = hstdin->Take(); in SetStdHandles()

12