Searched refs:DEVNULL (Results 1 – 21 of 21) sorted by relevance
/external/python/cpython3/Lib/ctypes/ |
D | util.py | 139 stderr=subprocess.DEVNULL) 161 stderr=subprocess.DEVNULL) 192 stderr=subprocess.DEVNULL) 223 stderr=subprocess.DEVNULL, 268 stdin=subprocess.DEVNULL, 269 stderr=subprocess.DEVNULL,
|
/external/autotest/server/hosts/ |
D | ssh_multiplex.py | 99 stdout_tee=utils.DEVNULL, stderr_tee=utils.DEVNULL,
|
/external/python/cpython3/Lib/ |
D | subprocess.py | 216 DEVNULL = -3 variable 891 elif stdin == DEVNULL: 909 elif stdout == DEVNULL: 929 elif stderr == DEVNULL: 1156 elif stdin == DEVNULL: 1168 elif stdout == DEVNULL: 1185 elif stderr == DEVNULL:
|
D | webbrowser.py | 197 inout = subprocess.DEVNULL 329 devnull = subprocess.DEVNULL
|
D | uuid.py | 320 stderr=subprocess.DEVNULL,
|
/external/python/cpython3/Lib/asyncio/ |
D | subprocess.py | 15 DEVNULL = subprocess.DEVNULL variable
|
/external/autotest/client/common_lib/ |
D | utils.py | 81 DEVNULL = object() variable 106 if stream is DEVNULL: 186 if (unjoinable and (stdout_tee != DEVNULL or stderr_tee != DEVNULL)): 227 stdout=devnull if stdout_tee == DEVNULL else subprocess.PIPE, 228 stderr=devnull if stderr_tee == DEVNULL else subprocess.PIPE, 235 None if stdout_tee == DEVNULL else StringIO.StringIO()) 237 None if stderr_tee == DEVNULL else StringIO.StringIO())
|
/external/python/cpython3/Lib/ctypes/test/ |
D | test_find.py | 82 stderr=subprocess.DEVNULL)
|
/external/python/cpython3/Lib/turtledemo/ |
D | __main__.py | 147 stderr=subprocess.DEVNULL, 148 stdout=subprocess.DEVNULL,)
|
/external/python/cpython3/Lib/test/ |
D | test_sysconfig.py | 314 stderr=subprocess.DEVNULL, 333 stderr=subprocess.DEVNULL,
|
D | test_cmd_line.py | 484 stderr=subprocess.DEVNULL)
|
D | test_subprocess.py | 595 stdout=subprocess.DEVNULL) 604 stderr=subprocess.DEVNULL) 612 stdin=subprocess.DEVNULL) 1068 stderr=subprocess.DEVNULL,
|
D | test_shutil.py | 1024 stdout=subprocess.DEVNULL) 1094 stdout=subprocess.DEVNULL)
|
/external/python/cpython2/Tools/ssl/ |
D | test_multiple_versions.py | 106 def _subprocess_call(self, cmd, stdout=subprocess.DEVNULL, env=None,
|
/external/python/cpython3/Tools/ssl/ |
D | test_multiple_versions.py | 106 def _subprocess_call(self, cmd, stdout=subprocess.DEVNULL, env=None,
|
/external/python/cpython3/Lib/lib2to3/tests/ |
D | test_parser.py | 445 …return subprocess.call(['diff', '-u', fn, '@'], stdout=(subprocess.DEVNULL if verbose < 1 else Non…
|
/external/python/cpython3/Doc/library/ |
D | subprocess.rst | 136 .. data:: DEVNULL 250 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive 252 that a new pipe to the child should be created. :data:`DEVNULL` indicates 421 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive 423 indicates that a new pipe to the child should be created. :data:`DEVNULL`
|
D | asyncio-subprocess.rst | 166 .. data:: asyncio.subprocess.DEVNULL
|
/external/python/cpython3/Lib/test/support/ |
D | __init__.py | 1686 stdin=f, stderr=subprocess.DEVNULL)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1997 A new constant :data:`~subprocess.DEVNULL` allows suppressing output in a
|
/external/python/cpython3/Misc/ |
D | HISTORY | 4878 /dev/null fd when any of stdin, stdout and stderr was set to DEVNULL. 5842 - Issue #15447: Use `subprocess.DEVNULL` in webbrowser, instead of opening 9950 - Issue #5870: Add `subprocess.DEVNULL` constant.
|