Home
last modified time | relevance | path

Searched refs:DEVNULL (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython3/Lib/ctypes/
Dutil.py139 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/
Dssh_multiplex.py99 stdout_tee=utils.DEVNULL, stderr_tee=utils.DEVNULL,
/external/python/cpython3/Lib/
Dsubprocess.py216 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:
Dwebbrowser.py197 inout = subprocess.DEVNULL
329 devnull = subprocess.DEVNULL
Duuid.py320 stderr=subprocess.DEVNULL,
/external/python/cpython3/Lib/asyncio/
Dsubprocess.py15 DEVNULL = subprocess.DEVNULL variable
/external/autotest/client/common_lib/
Dutils.py81 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/
Dtest_find.py82 stderr=subprocess.DEVNULL)
/external/python/cpython3/Lib/turtledemo/
D__main__.py147 stderr=subprocess.DEVNULL,
148 stdout=subprocess.DEVNULL,)
/external/python/cpython3/Lib/test/
Dtest_sysconfig.py314 stderr=subprocess.DEVNULL,
333 stderr=subprocess.DEVNULL,
Dtest_cmd_line.py484 stderr=subprocess.DEVNULL)
Dtest_subprocess.py595 stdout=subprocess.DEVNULL)
604 stderr=subprocess.DEVNULL)
612 stdin=subprocess.DEVNULL)
1068 stderr=subprocess.DEVNULL,
Dtest_shutil.py1024 stdout=subprocess.DEVNULL)
1094 stdout=subprocess.DEVNULL)
/external/python/cpython2/Tools/ssl/
Dtest_multiple_versions.py106 def _subprocess_call(self, cmd, stdout=subprocess.DEVNULL, env=None,
/external/python/cpython3/Tools/ssl/
Dtest_multiple_versions.py106 def _subprocess_call(self, cmd, stdout=subprocess.DEVNULL, env=None,
/external/python/cpython3/Lib/lib2to3/tests/
Dtest_parser.py445 …return subprocess.call(['diff', '-u', fn, '@'], stdout=(subprocess.DEVNULL if verbose < 1 else Non…
/external/python/cpython3/Doc/library/
Dsubprocess.rst136 .. 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`
Dasyncio-subprocess.rst166 .. data:: asyncio.subprocess.DEVNULL
/external/python/cpython3/Lib/test/support/
D__init__.py1686 stdin=f, stderr=subprocess.DEVNULL)
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1997 A new constant :data:`~subprocess.DEVNULL` allows suppressing output in a
/external/python/cpython3/Misc/
DHISTORY4878 /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.