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

  /tools/test/connectivity/acts/framework/acts/libs/proc/
job.py 23 DEVNULL = open(os.devnull, 'wb')
27 from subprocess import DEVNULL
200 stdout=DEVNULL,
  /tools/test/connectivity/tools/lab/utils/
job.py 23 DEVNULL = open(os.devnull, 'wb')
27 from subprocess import DEVNULL
200 stdout=DEVNULL,
  /external/python/cpython3/Lib/ctypes/
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,
286 cmd.extend(['-o', os.devnull, '-l%s' % name])
  /external/autotest/server/hosts/
ssh_multiplex.py 99 stdout_tee=utils.DEVNULL, stderr_tee=utils.DEVNULL,
  /development/vndk/tools/header-checker/utils/
utils.py 136 subprocess.check_call(make_cmd, cwd=AOSP_DIR, stdout=subprocess.DEVNULL,
204 stderr=subprocess.DEVNULL, cwd=AOSP_DIR, shell=True)
  /development/vndk/tools/sourcedr/sourcedr/
codesearch.py 206 cwd=self._root_dir, stdout=subprocess.DEVNULL,
207 stderr=subprocess.DEVNULL)
214 stderr=subprocess.DEVNULL)
  /external/python/cpython3/Lib/ctypes/test/
test_find.py 82 stderr=subprocess.DEVNULL)
  /external/python/cpython3/Lib/asyncio/
subprocess.py 15 DEVNULL = subprocess.DEVNULL
  /art/tools/jfuzz/
run_jfuzz_test.py 27 from subprocess import DEVNULL
571 subprocess.check_call(script_cmd, stdout=DEVNULL, stderr=DEVNULL)
  /art/tools/common/
common.py 29 from subprocess import DEVNULL
147 Subprocess.DEVNULL, see Popen.
149 Subprocess.DEVNULL, see Popen.
196 devnull = DEVNULL
197 outf = devnull
200 errf = devnull
204 if outf != devnull:
206 if errf != devnull:
  /external/autotest/client/common_lib/
utils.py 81 DEVNULL = object()
106 if stream is DEVNULL:
143 DEVNULL.
153 If DEVNULL is given, the stdout of the subprocess
178 DEVNULL, otherwise InvalidBgJobCall is raised.
186 if (unjoinable and (stdout_tee != DEVNULL or stderr_tee != DEVNULL)):
188 'stdout_tee and stderr_tee must be DEVNULL for '
223 with open('/dev/null', 'w') as devnull:
227 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/
subprocess.py 25 DEVNULL: Special value that indicates that os.devnull should be used
159 "getoutput", "check_output", "run", "CalledProcessError", "DEVNULL",
216 DEVNULL = -3
770 self._devnull = os.open(os.devnull, os.O_RDWR)
891 elif stdin == DEVNULL:
909 elif stdout == DEVNULL:
    [all...]
webbrowser.py 197 inout = subprocess.DEVNULL
329 devnull = subprocess.DEVNULL
333 close_fds=True, stdin=devnull,
334 stdout=devnull, stderr=devnull)
345 close_fds=True, stdin=devnull,
346 stdout=devnull, stderr=devnull,
358 close_fds=True, stdin=devnull,
    [all...]
uuid.py 313 # LC_ALL=C to ensure English output, stderr=DEVNULL to prevent output
320 stderr=subprocess.DEVNULL,
  /external/python/cpython3/Lib/test/
test_sysconfig.py 314 stderr=subprocess.DEVNULL,
333 stderr=subprocess.DEVNULL,
test_cmd_line.py 484 stderr=subprocess.DEVNULL)
test_subprocess.py 595 stdout=subprocess.DEVNULL)
604 stderr=subprocess.DEVNULL)
612 stdin=subprocess.DEVNULL)
    [all...]
test_shutil.py     [all...]
  /external/python/cpython2/Tools/ssl/
test_multiple_versions.py 106 def _subprocess_call(self, cmd, stdout=subprocess.DEVNULL, env=None,
  /external/python/cpython3/Tools/ssl/
test_multiple_versions.py 106 def _subprocess_call(self, cmd, stdout=subprocess.DEVNULL, env=None,
  /external/python/cpython3/Lib/lib2to3/tests/
test_parser.py 445 return subprocess.call(['diff', '-u', fn, '@'], stdout=(subprocess.DEVNULL if verbose < 1 else None))
  /external/python/cpython3/Lib/test/support/
__init__.py     [all...]

Completed in 919 milliseconds