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

1 2 3

  /external/chromium_org/tools/gyp/test/mac/
gyptest-sdkroot.py 22 DEVNULL = open(os.devnull, 'wb')
26 stdout=subprocess.PIPE, stderr=DEVNULL)
29 DEVNULL.close()
  /external/sepolicy/
initial_sids 33 sid devnull
initial_sid_contexts 27 sid devnull u:object_r:null_device:s0
  /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/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
android_browser_finder.py 136 with open(os.devnull, 'w') as devnull:
140 stdin=devnull)
192 with open(os.devnull, 'w') as devnull:
197 stdin=devnull)
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 185 with open(os.devnull, 'w') as devnull:
187 stdout=devnull, stderr=devnull) == 0
  /external/chromium/base/
file_descriptor_shuffle.h 18 // file_descriptor_map.push_back(base::InjectionArc(devnull, 0, true));
19 // file_descriptor_map.push_back(base::InjectionArc(devnull, 2, true));
  /external/chromium_org/base/posix/
file_descriptor_shuffle.h 17 // file_descriptor_map.push_back(base::InjectionArc(devnull, 0, true));
18 // file_descriptor_map.push_back(base::InjectionArc(devnull, 2, true));
  /external/chromium_org/build/android/pylib/
constants.py 167 with file(os.devnull, 'w') as devnull:
168 subprocess.call(['adb', 'version'], stdout=devnull, stderr=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/test/
script_helper.py 67 with open(os.devnull, 'w') as devnull:
68 return subprocess.call(cmd_line, stdout=devnull,
  /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/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/
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/components/breakpad/tools/
generate_breakpad_symbols.py 34 devnull = open(os.devnull, 'w')
35 proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=devnull,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
websocket_server.py 112 # FIXME: Doesn't Executive have a devnull, so that we don't have to use os.devnull directly?
113 self._wsin = open(os.devnull, 'r')
  /external/chromium_org/tools/telemetry/telemetry/unittest/
system_stub.py 196 self.devnull = os.devnull
  /external/chromium_org/remoting/tools/
me2me_virtual_host.py 297 devnull = open(os.devnull, "rw")
353 proc = subprocess.Popen("xdpyinfo", env=self.child_env, stdout=devnull)
382 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
384 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
391 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull)
397 subprocess.call(args, env=self.child_env, stdout=devnull, stderr=devnull
    [all...]
  /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);
  /pdk/apps/CameraITS/pymodules/its/
device.py 268 with open(os.devnull, 'wb') as devnull:
270 cmd.split(), stdout=devnull, stderr=subprocess.STDOUT)
  /external/chromium_org/tools/telemetry/telemetry/core/
temporary_http_server.py 29 self._devnull = open(os.devnull, 'w')
  /external/chromium_org/tools/win/sizeviewer/
sizeviewer.py 16 with open(os.devnull, 'w') as null:

Completed in 1126 milliseconds

1 2 3