Home
last modified time | relevance | path

Searched refs:hStdOutput (Results 1 – 22 of 22) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DProgram.inc219 si.hStdOutput = INVALID_HANDLE_VALUE;
230 si.hStdOutput = RedirectIO(Redirects[1], 1, ErrMsg);
231 if (si.hStdOutput == INVALID_HANDLE_VALUE) {
239 if (!DuplicateHandle(GetCurrentProcess(), si.hStdOutput,
243 CloseHandle(si.hStdOutput);
252 CloseHandle(si.hStdOutput);
290 CloseHandle(si.hStdOutput);
/third_party/skia/third_party/externals/angle2/util/windows/
Dtest_utils_win.cpp180 startInfo.hStdOutput = mStdoutPipe.writeHandle; in WindowsProcess()
184 startInfo.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); in WindowsProcess()
189 startInfo.hStdError = startInfo.hStdOutput; in WindowsProcess()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DProgram.inc300 si.hStdOutput = INVALID_HANDLE_VALUE;
311 si.hStdOutput = RedirectIO(redirects[1], 1, ErrMsg);
312 if (si.hStdOutput == INVALID_HANDLE_VALUE) {
320 if (!DuplicateHandle(GetCurrentProcess(), si.hStdOutput,
324 CloseHandle(si.hStdOutput);
333 CloseHandle(si.hStdOutput);
371 CloseHandle(si.hStdOutput);
/third_party/ninja/src/
Dmsvc_helper-win32.cc67 startup_info.hStdOutput = stdout_write; in Run()
Dsubprocess-win32.cc98 startup_info.hStdOutput = child_pipe; in Start()
/third_party/python/Lib/
Dsubprocess.py171 def __init__(self, *, dwFlags=0, hStdInput=None, hStdOutput=None, argument
175 self.hStdOutput = hStdOutput
187 hStdOutput=self.hStdOutput,
1392 startupinfo.hStdOutput = c2pwrite
/third_party/skia/third_party/externals/tint/src/utils/io/
Dcommand_windows.cc173 si.hStdOutput = stdout_pipe.write; in Exec()
/third_party/libuv/test/
Drunner-win.c148 si.hStdOutput = file; in process_start()
/third_party/gn/src/gn/
Dexec_process.cc90 start_info.hStdOutput = out_write; in ExecProcess()
/third_party/protobuf/src/google/protobuf/compiler/
Dsubprocess.cc121 startup_info.hStdOutput = stdout_pipe_write; in Start()
/third_party/libwebsockets/lib/plat/windows/
Dwindows-spawn.c492 si.hStdOutput = lsp->pipe_fds[LWS_STDOUT][1]; in lws_spawn_piped()
/third_party/vk-gl-cts/execserver/
DxsWin32TestProcess.cpp537 startInfo.hStdOutput = stdOutWrite; in start()
/third_party/vk-gl-cts/framework/delibs/deutil/
DdeProcess.c698 startInfo.hStdOutput = stdOutWrite; in deProcess_start()
/third_party/node/deps/uv/src/win/
Dprocess.c1066 startup.hStdOutput = uv__stdio_handle(process->child_stdio_buffer, 1); in uv_spawn()
/third_party/libuv/src/win/
Dprocess.c1066 startup.hStdOutput = uv__stdio_handle(process->child_stdio_buffer, 1); in uv_spawn()
/third_party/node/deps/googletest/src/
Dgtest-death-test.cc809 startup_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); in AssumeRole()
/third_party/googletest/googletest/src/
Dgtest-death-test.cc791 startup_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); in AssumeRole()
/third_party/mesa3d/src/gtest/src/
Dgtest-death-test.cc791 startup_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); in AssumeRole()
/third_party/python/Doc/library/
Dsubprocess.rst903 .. class:: STARTUPINFO(*, dwFlags=0, hStdInput=None, hStdOutput=None, \
929 .. attribute:: hStdOutput
1009 :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes
/third_party/python/Modules/
D_winapi.c1107 si.StartupInfo.hStdOutput = gethandle(startup_info, "hStdOutput"); in _winapi_CreateProcess_impl()
/third_party/python/PC/
Dlauncher.c799 ok = safe_duplicate_handle(GetStdHandle(STD_OUTPUT_HANDLE), &si.hStdOutput); in run_child()
/third_party/python/Lib/test/
Dtest_subprocess.py3316 self.assertIsNone(startupinfo.hStdOutput)