HomeSort by relevance Sort by last modified time
    Searched refs:DEVNULL (Results 1 - 22 of 22) sorted by null

  /external/python/cpython3/Lib/ctypes/
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,
295 cmd.extend(['-o', os.devnull, '-l%s' % name])
_aix.py 53 from subprocess import Popen, PIPE, DEVNULL
109 universal_newlines=True, stdout=PIPE, stderr=DEVNULL)
  /external/autotest/server/hosts/
ssh_multiplex.py 99 stdout_tee=utils.DEVNULL, stderr_tee=utils.DEVNULL,
  /external/python/cpython3/Lib/ctypes/test/
test_find.py 82 stderr=subprocess.DEVNULL)
  /external/python/cpython3/Lib/asyncio/
subprocess.py 14 DEVNULL = subprocess.DEVNULL
  /external/python/cpython3/Tools/scripts/
patchcheck.py 52 stderr=subprocess.DEVNULL,
66 stderr=subprocess.DEVNULL,
  /art/tools/jfuzz/
run_jfuzz_test.py 27 from subprocess import DEVNULL
565 subprocess.check_call(script_cmd, stdout=DEVNULL, stderr=DEVNULL)
  /external/python/cpython3/Lib/
webbrowser.py 215 inout = subprocess.DEVNULL
346 devnull = subprocess.DEVNULL
350 close_fds=True, stdin=devnull,
351 stdout=devnull, stderr=devnull)
362 close_fds=True, stdin=devnull,
363 stdout=devnull, stderr=devnull,
375 close_fds=True, stdin=devnull,
    [all...]
subprocess.py 25 DEVNULL: Special value that indicates that os.devnull should be used
172 "getoutput", "check_output", "run", "CalledProcessError", "DEVNULL",
239 DEVNULL = -3
867 self._devnull = os.open(os.devnull, os.O_RDWR)
    [all...]
uuid.py 351 # LC_ALL=C to ensure English output, stderr=DEVNULL to prevent output
358 stderr=subprocess.DEVNULL,
  /art/tools/common/
common.py 29 from subprocess import DEVNULL
139 Subprocess.DEVNULL, see Popen.
141 Subprocess.DEVNULL, see Popen.
188 devnull = DEVNULL
189 outf = devnull
192 errf = devnull
196 if outf != devnull:
198 if errf != devnull:
  /external/autotest/client/common_lib/
utils.py 86 DEVNULL = object()
111 if stream is DEVNULL:
148 DEVNULL.
158 If DEVNULL is given, the stdout of the subprocess
183 DEVNULL, otherwise InvalidBgJobCall is raised.
191 if (unjoinable and (stdout_tee != DEVNULL or stderr_tee != DEVNULL)):
193 'stdout_tee and stderr_tee must be DEVNULL for '
228 with open('/dev/null', 'w') as devnull:
232 stdout=devnull if stdout_tee == DEVNULL else subprocess.PIPE
    [all...]
  /external/python/cpython3/Lib/turtledemo/
__main__.py 147 stderr=subprocess.DEVNULL,
148 stdout=subprocess.DEVNULL,)
  /external/python/cpython3/Lib/test/
test_sysconfig.py 319 stderr=subprocess.DEVNULL,
338 stderr=subprocess.DEVNULL,
test_subprocess.py 601 stdout=subprocess.DEVNULL)
610 stderr=subprocess.DEVNULL)
618 stdin=subprocess.DEVNULL)
    [all...]
test_cmd_line.py 496 stderr=subprocess.DEVNULL)
test_support.py 466 stderr=subprocess.DEVNULL,
test_shutil.py     [all...]
  /external/vulkan-validation-layers/scripts/
update_deps.py 265 DEVNULL = open(os.devnull, 'wb')
  /external/python/cpython3/Lib/unittest/test/
test_program.py 425 stdout=subprocess.DEVNULL, stderr=subprocess.PIPE, cwd=os.path.dirname(__file__))
  /external/u-boot/tools/
moveconfig.py 361 devnull = subprocess.DEVNULL # py3k
363 devnull = open(os.devnull, 'wb')
364 return devnull
    [all...]
  /external/python/cpython3/Lib/test/support/
__init__.py     [all...]

Completed in 2409 milliseconds