Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/ctypes/
Dutil.py148 stderr=subprocess.DEVNULL)
170 stderr=subprocess.DEVNULL)
201 stderr=subprocess.DEVNULL)
232 stderr=subprocess.DEVNULL,
277 stdin=subprocess.DEVNULL,
278 stderr=subprocess.DEVNULL,
D_aix.py53 from subprocess import Popen, PIPE, DEVNULL
109 universal_newlines=True, stdout=PIPE, stderr=DEVNULL)
/external/autotest/server/hosts/
Dssh_multiplex.py99 stdout_tee=utils.DEVNULL, stderr_tee=utils.DEVNULL,
/external/python/cpython3/Lib/
Dsubprocess.py239 DEVNULL = -3 variable
1033 elif stdin == DEVNULL:
1051 elif stdout == DEVNULL:
1071 elif stderr == DEVNULL:
1341 elif stdin == DEVNULL:
1353 elif stdout == DEVNULL:
1370 elif stderr == DEVNULL:
Dwebbrowser.py215 inout = subprocess.DEVNULL
346 devnull = subprocess.DEVNULL
530 raw_result = subprocess.check_output(cmd, stderr=subprocess.DEVNULL)
Duuid.py358 stderr=subprocess.DEVNULL,
/external/python/cpython3/Tools/scripts/
Dpatchcheck.py52 stderr=subprocess.DEVNULL,
66 stderr=subprocess.DEVNULL,
/external/python/cpython3/Lib/asyncio/
Dsubprocess.py14 DEVNULL = subprocess.DEVNULL variable
/external/autotest/client/common_lib/
Dutils.py86 DEVNULL = object() variable
111 if stream is DEVNULL:
191 if (unjoinable and (stdout_tee != DEVNULL or stderr_tee != DEVNULL)):
232 stdout=devnull if stdout_tee == DEVNULL else subprocess.PIPE,
233 stderr=devnull if stderr_tee == DEVNULL else subprocess.PIPE,
240 None if stdout_tee == DEVNULL else StringIO.StringIO())
242 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.py319 stderr=subprocess.DEVNULL,
338 stderr=subprocess.DEVNULL,
Dtest_subprocess.py601 stdout=subprocess.DEVNULL)
610 stderr=subprocess.DEVNULL)
618 stdin=subprocess.DEVNULL)
1114 stderr=subprocess.DEVNULL,
3101 stdout=subprocess.DEVNULL, **kwargs)
Dtest_support.py466 stderr=subprocess.DEVNULL,
Dtest_cmd_line.py496 stderr=subprocess.DEVNULL)
Dtest_shutil.py1028 stdout=subprocess.DEVNULL)
1098 stdout=subprocess.DEVNULL)
/external/vulkan-validation-layers/scripts/
Dupdate_deps.py265 DEVNULL = open(os.devnull, 'wb') variable
/external/python/cpython3/Lib/unittest/test/
Dtest_program.py425 stdout=subprocess.DEVNULL, stderr=subprocess.PIPE, cwd=os.path.dirname(__file__))
/external/python/cpython3/Doc/library/
Dsubprocess.rst150 .. data:: DEVNULL
264 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
266 that a new pipe to the child should be created. :data:`DEVNULL` indicates
439 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
441 indicates that a new pipe to the child should be created. :data:`DEVNULL`
Dasyncio-subprocess.rst136 .. data:: asyncio.subprocess.DEVNULL
/external/u-boot/tools/
Dmoveconfig.py361 devnull = subprocess.DEVNULL # py3k
/external/python/cpython3/Lib/test/support/
D__init__.py1721 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.