Home | History | Annotate | Download | only in python2.7

Lines Matching refs:startupinfo

37             startupinfo=None, creationflags=0):
104 The startupinfo and creationflags, if given, will be passed to the
420 class STARTUPINFO:
654 startupinfo=None, creationflags=0):
672 if startupinfo is not None:
673 raise ValueError("startupinfo is only supported on Windows "
708 startupinfo, creationflags, shell,
900 startupinfo, creationflags, shell,
910 if startupinfo is None:
911 startupinfo = STARTUPINFO()
913 startupinfo.dwFlags |= _subprocess.STARTF_USESTDHANDLES
914 startupinfo.hStdInput = p2cread
915 startupinfo.hStdOutput = c2pwrite
916 startupinfo.hStdError = errwrite
919 startupinfo.dwFlags |= _subprocess.STARTF_USESHOWWINDOW
920 startupinfo.wShowWindow = _subprocess.SW_HIDE
948 startupinfo)
1175 startupinfo, creationflags, shell,