HomeSort by relevance Sort by last modified time
    Searched refs:devnull (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/chromium_org/build/android/pylib/
constants.py 92 with file(os.devnull, 'w') as devnull:
93 subprocess.call(['adb', 'version'], stdout=devnull, stderr=devnull)
  /external/chromium_org/tools/gyp/test/mac/
gyptest-sdkroot.py 23 DEVNULL = open(os.devnull, 'wb')
25 stdout=DEVNULL, stderr=DEVNULL)
27 DEVNULL.close()
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
cros_interface.py 41 with open(os.devnull, 'w') as devnull:
42 p = subprocess.Popen(args=args, cwd=cwd, stdout=devnull,
43 stderr=devnull, stdin=devnull, shell=False)
61 with open(os.devnull, 'w') as devnull:
63 stderr=subprocess.PIPE, stdin=devnull)
desktop_browser_finder.py 204 with open(os.devnull, 'w') as devnull:
206 stdout=devnull, stderr=devnull) == 0
android_browser_finder.py 80 with open(os.devnull, 'w') as devnull:
84 stdin=devnull)
  /external/wpa_supplicant_8/src/utils/
os_unix.c 125 int devnull; local
130 devnull = open("/dev/null", O_RDWR);
131 if (devnull < 0)
134 if (dup2(devnull, STDIN_FILENO) < 0) {
135 close(devnull);
139 if (dup2(devnull, STDOUT_FILENO) < 0) {
140 close(devnull);
144 if (dup2(devnull, STDERR_FILENO) < 0) {
145 close(devnull);
  /external/dropbear/
cli-session.c 217 int devnull; local
220 devnull = open(_PATH_DEVNULL, O_RDONLY);
221 if (devnull < 0) {
225 dup2(devnull, STDIN_FILENO);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
webbrowser.py 226 inout = file(os.devnull, "r+")
358 devnull = file(os.devnull, "r+")
367 close_fds=True, stdin=devnull,
368 stdout=devnull, stderr=devnull)
379 close_fds=True, stdin=devnull,
380 stdout=devnull, stderr=devnull,
392 close_fds=True, stdin=devnull,
    [all...]
os2emxpath.py 19 "extsep","devnull","realpath","supports_unicode_filenames"]
29 devnull = 'nul' variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
webbrowser.py 226 inout = file(os.devnull, "r+")
358 devnull = file(os.devnull, "r+")
367 close_fds=True, stdin=devnull,
368 stdout=devnull, stderr=devnull)
379 close_fds=True, stdin=devnull,
380 stdout=devnull, stderr=devnull,
392 close_fds=True, stdin=devnull,
    [all...]
os2emxpath.py 19 "extsep","devnull","realpath","supports_unicode_filenames"]
29 devnull = 'nul' variable
  /external/chromium_org/remoting/tools/
me2me_virtual_host.py 296 devnull = open(os.devnull, "rw")
346 proc = subprocess.Popen("xdpyinfo", env=self.child_env, stdout=devnull)
375 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
377 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
384 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
390 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull
    [all...]
  /external/chromium_org/build/win/importlibs/
create_importlib_win.py 118 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/python/google/
process_utils.py 71 out = file(os.devnull, 'w')
171 out = file(os.devnull, 'w')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
script_helper.py 67 with open(os.devnull, 'w') as devnull:
68 return subprocess.call(cmd_line, stdout=devnull,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
script_helper.py 67 with open(os.devnull, 'w') as devnull:
68 return subprocess.call(cmd_line, stdout=devnull,
  /external/chromium/chrome/browser/
shell_integration_linux.cc 51 int devnull = open("/dev/null", O_RDONLY); local
52 if (devnull < 0)
55 no_stdin.push_back(std::make_pair(devnull, STDIN_FILENO));
59 close(devnull);
62 close(devnull);
  /external/chromium_org/tools/telemetry/telemetry/core/
temporary_http_server.py 23 self._devnull = open(os.devnull, 'w')
  /external/chromium_org/tools/win/sizeviewer/
sizeviewer.py 16 with open(os.devnull, 'w') as null:
  /external/chromium_org/tools/telemetry/telemetry/unittest/
system_stub.py 124 self.devnull = os.devnull
  /pdk/apps/CameraITS/pymodules/its/
device.py 505 with open(os.devnull, 'wb') as devnull:
507 cmd.split(), stdout=devnull, stderr=subprocess.STDOUT)
  /external/chromium_org/chrome/test/pyautolib/
policy_base.py 114 with open(os.devnull, 'w') as devnull:
116 return subprocess.check_call(command.split(' '), stdout=devnull)
118 return subprocess.call(command.split(' '), stdout=devnull)
  /external/chromium_org/native_client_sdk/src/tools/
sel_ldr.py 77 cmd = [sel_ldr, '-a', '-B', irt, '-l', os.devnull]
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
perf_profiler.py 113 stdout=subprocess.PIPE, stderr=open(os.devnull, 'w')).communicate()[0]
  /external/clang/tools/scan-view/
startfile.py 45 inout = file(os.devnull, 'r+')

Completed in 956 milliseconds

1 2 3