/external/python/cpython3/Lib/ctypes/ |
D | util.py | 148 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.py | 53 from subprocess import Popen, PIPE, DEVNULL 109 universal_newlines=True, stdout=PIPE, stderr=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 | 239 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:
|
D | webbrowser.py | 215 inout = subprocess.DEVNULL 346 devnull = subprocess.DEVNULL 530 raw_result = subprocess.check_output(cmd, stderr=subprocess.DEVNULL)
|
D | uuid.py | 358 stderr=subprocess.DEVNULL,
|
/external/python/cpython3/Tools/scripts/ |
D | patchcheck.py | 52 stderr=subprocess.DEVNULL, 66 stderr=subprocess.DEVNULL,
|
/external/python/cpython3/Lib/asyncio/ |
D | subprocess.py | 14 DEVNULL = subprocess.DEVNULL variable
|
/external/autotest/client/common_lib/ |
D | utils.py | 86 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/ |
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 | 319 stderr=subprocess.DEVNULL, 338 stderr=subprocess.DEVNULL,
|
D | test_subprocess.py | 601 stdout=subprocess.DEVNULL) 610 stderr=subprocess.DEVNULL) 618 stdin=subprocess.DEVNULL) 1114 stderr=subprocess.DEVNULL, 3101 stdout=subprocess.DEVNULL, **kwargs)
|
D | test_support.py | 466 stderr=subprocess.DEVNULL,
|
D | test_cmd_line.py | 496 stderr=subprocess.DEVNULL)
|
D | test_shutil.py | 1028 stdout=subprocess.DEVNULL) 1098 stdout=subprocess.DEVNULL)
|
/external/vulkan-validation-layers/scripts/ |
D | update_deps.py | 265 DEVNULL = open(os.devnull, 'wb') variable
|
/external/python/cpython3/Lib/unittest/test/ |
D | test_program.py | 425 stdout=subprocess.DEVNULL, stderr=subprocess.PIPE, cwd=os.path.dirname(__file__))
|
/external/python/cpython3/Doc/library/ |
D | subprocess.rst | 150 .. 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`
|
D | asyncio-subprocess.rst | 136 .. data:: asyncio.subprocess.DEVNULL
|
/external/u-boot/tools/ |
D | moveconfig.py | 361 devnull = subprocess.DEVNULL # py3k
|
/external/python/cpython3/Lib/test/support/ |
D | __init__.py | 1721 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.
|