Home
last modified time | relevance | path

Searched refs:siStartInfo (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
Dedk2module.c3518 STARTUPINFO siStartInfo; in _PyPopenCreateProcess() local
3636 ZeroMemory(&siStartInfo, sizeof(STARTUPINFO)); in _PyPopenCreateProcess()
3637 siStartInfo.cb = sizeof(STARTUPINFO); in _PyPopenCreateProcess()
3638 siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; in _PyPopenCreateProcess()
3639 siStartInfo.hStdInput = hStdin; in _PyPopenCreateProcess()
3640 siStartInfo.hStdOutput = hStdout; in _PyPopenCreateProcess()
3641 siStartInfo.hStdError = hStderr; in _PyPopenCreateProcess()
3642 siStartInfo.wShowWindow = SW_HIDE; in _PyPopenCreateProcess()
3652 &siStartInfo, in _PyPopenCreateProcess()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dposixmodule.c5108 STARTUPINFO siStartInfo; in _PyPopenCreateProcess() local
5226 ZeroMemory(&siStartInfo, sizeof(STARTUPINFO)); in _PyPopenCreateProcess()
5227 siStartInfo.cb = sizeof(STARTUPINFO); in _PyPopenCreateProcess()
5228 siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; in _PyPopenCreateProcess()
5229 siStartInfo.hStdInput = hStdin; in _PyPopenCreateProcess()
5230 siStartInfo.hStdOutput = hStdout; in _PyPopenCreateProcess()
5231 siStartInfo.hStdError = hStderr; in _PyPopenCreateProcess()
5232 siStartInfo.wShowWindow = SW_HIDE; in _PyPopenCreateProcess()
5242 &siStartInfo, in _PyPopenCreateProcess()