Home
last modified time | relevance | path

Searched refs:devnull (Results 1 – 25 of 70) sorted by relevance

123

/external/chromium_org/tools/telemetry/telemetry/core/platform/
Dcros_interface.py32 with open(os.devnull, 'w') as devnull:
33 p = subprocess.Popen(args=args, cwd=cwd, stdout=devnull,
34 stderr=devnull, stdin=devnull, shell=False)
52 with open(os.devnull, 'w') as devnull:
54 stderr=subprocess.PIPE, stdin=devnull)
101 with open(os.devnull, 'w') as devnull:
103 stdin=devnull, stdout=devnull, stderr=devnull)
452 with open(os.devnull, 'w') as devnull:
454 stdout=devnull, stderr=devnull)
/external/chromium_org/build/
Dcheck_return_value.py13 devnull = open(os.devnull, 'wb') variable
14 if not subprocess.call(sys.argv[1:], stdout=devnull, stderr=devnull):
/external/skia/tools/
Dmisc_utils.py58 with open(os.devnull, 'w') as devnull:
59 return subprocess.check_call(*args, stdout=devnull, **kwargs)
77 with open(os.devnull, 'w') as devnull:
78 return subprocess.call(*args, stdout=devnull, **kwargs)
Dgit_utils.py142 with open(os.devnull, 'w') as devnull:
144 subprocess.call([git, '--version'], stdout=devnull)
/external/compiler-rt/test/asan/android_commands/
Dandroid_common.py14 devnull = open(os.devnull, 'w')
15 return subprocess.call([ADB] + args, stdout=devnull, stderr=subprocess.STDOUT)
/external/chromium_org/build/android/pylib/
Dconstants.py204 with file(os.devnull, 'w') as devnull:
205 subprocess.call(['adb', 'version'], stdout=devnull, stderr=devnull)
/external/chromium_org/content/shell/tools/
Dbreakpad_integration_test.py88 with open(os.devnull, 'w') as devnull:
89 subprocess.check_call(cmd, stdout=devnull, stderr=devnull)
/external/wpa_supplicant_8/src/utils/
Dos_unix.c163 int devnull; in os_daemon() local
168 devnull = open("/dev/null", O_RDWR); in os_daemon()
169 if (devnull < 0) in os_daemon()
172 if (dup2(devnull, STDIN_FILENO) < 0) { in os_daemon()
173 close(devnull); in os_daemon()
177 if (dup2(devnull, STDOUT_FILENO) < 0) { in os_daemon()
178 close(devnull); in os_daemon()
182 if (dup2(devnull, STDERR_FILENO) < 0) { in os_daemon()
183 close(devnull); in os_daemon()
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
Diosbuild.sh18 devnull='> /dev/null 2>&1'
46 --disable-docs ${EXTRA_CONFIGURE_ARGS} ${devnull}
48 eval make -j ${MAKE_JOBS} dist ${devnull}
225 devnull=
/external/chromium_org/third_party/libvpx/source/libvpx/test/
Dvpxdec.sh37 cat "${input}" | eval "${VPX_TEST_PREFIX}" "${decoder}" - "$@" ${devnull}
47 eval "${VPX_TEST_PREFIX}" "${decoder}" "$input" "$@" ${devnull}
Dvpxenc.sh88 "$@" ${devnull}
100 "$@" ${devnull}
Dset_maps.sh39 ${devnull}
Dvp8cx_set_ref.sh44 "${ref_frame_num}" ${devnull}
Dtwopass_encoder.sh39 ${devnull}
/external/chromium_org/remoting/host/linux/
Dlinux_me2me_host.py343 devnull = open(os.devnull, "rw")
398 proc = subprocess.Popen("xdpyinfo", env=self.child_env, stdout=devnull)
427 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
429 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
436 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
442 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
444 devnull.close()
459 stdin=open(os.devnull, "r"),
735 devnull_fd = os.open(os.devnull, os.O_RDONLY)
/external/chromium_org/third_party/skia/tools/
Dgit-sync-deps49 with open(os.devnull, 'w') as devnull:
52 subprocess.call([git, '--version'], stdout=devnull)
/external/chromium_org/tools/telemetry/telemetry/util/
Dfind_dependencies_unittest.py41 with open(os.devnull, 'w') as dev_null:
51 with open(os.devnull, 'w') as dev_null:
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
Ddesktop_browser_finder.py217 with open(os.devnull, 'w') as devnull:
219 stdout=devnull, stderr=devnull) == 0
Dandroid_browser_finder.py164 with open(os.devnull, 'w') as devnull:
167 stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=devnull)
/external/chromium_org/third_party/closure_compiler/
Dchecker.py95 devnull = open(os.devnull, "w")
97 cmd_str, stdout=devnull, stderr=subprocess.PIPE, shell=True)
/external/chromium_org/components/crash/tools/
Dgenerate_breakpad_symbols.py34 devnull = open(os.devnull, 'w')
35 proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=devnull,
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
Dperf_profiler.py227 with open(os.devnull, 'w') as devnull:
232 stdout=subprocess.PIPE, stderr=devnull).communicate()[0]
/external/chromium_org/tools/python/google/
Dprocess_utils.py71 out = file(os.devnull, 'w')
171 out = file(os.devnull, 'w')
/external/chromium_org/build/win/importlibs/
Dcreate_importlib_win.py118 self._Shell(cmdline, cwd=self._temp_dir, stdout=open(os.devnull))
154 self._Shell(cmdline, cwd=self._temp_dir, stdout=open(os.devnull))
/external/chromium_org/tools/gyp/buildbot/
Dbuildbot_run.py34 with open(os.devnull) as devnull_fd:
139 with open(os.devnull, 'w') as devnull_fd:

123