Lines Matching defs:PIPE
25 PIPE: Special value that indicates a pipe should be created
63 __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput",
281 PIPE = -1
466 return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
512 will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them,
539 kwargs['stdin'] = PIPE
545 kwargs['stdout'] = PIPE
546 kwargs['stderr'] = PIPE
1045 if stdin == PIPE:
1047 if stdout == PIPE:
1049 if stderr == PIPE:
1354 elif stdin == PIPE:
1374 elif stdout == PIPE:
1394 elif stderr == PIPE:
1697 elif stdin == PIPE:
1712 elif stdout == PIPE:
1727 elif stderr == PIPE: