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

1 2

  /external/v8/build/
check_return_value.py 13 devnull = open(os.devnull, 'wb') variable
14 if not subprocess.call(sys.argv[1:], stdout=devnull, stderr=devnull):
  /libcore/ojluni/src/main/native/
io_util_md.c 123 int devnull = open("/dev/null", O_WRONLY); local
124 if (devnull < 0) {
128 dup2(devnull, fd);
129 close(devnull);
  /external/autotest/client/bin/
autotestd_monitor 18 devnull = open(os.devnull, 'w') variable
26 return subprocess.Popen(argv, stderr=devnull)
28 return subprocess.Popen(argv, stdout=outstream, stderr=devnull)
  /external/libmicrohttpd/src/testspdy/
test_proxies.c 106 pid_t devnull; local
110 devnull = open("/dev/null", O_WRONLY);
111 if (-1 == devnull)
113 if (1 != devnull)
115 dup2(devnull, 1);
116 close(devnull);
130 pid_t devnull; local
135 devnull = open("/dev/null", O_WRONLY);
136 if (-1 == devnull)
138 if (1 != devnull)
156 pid_t devnull; local
183 pid_t devnull; local
    [all...]
test_misc.c 78 int devnull; local
81 devnull = open("/dev/null", O_WRONLY);
82 if (-1 == devnull)
84 if (1 != devnull)
86 dup2(devnull, 1);
87 close(devnull);
test_session_timeout.c 272 pid_t devnull; local
281 /*devnull = open("/dev/null", O_RDONLY);
282 if (0 != devnull)
284 dup2(devnull, 0);
285 close(devnull);
287 devnull = open("/dev/null", O_WRONLY);
288 if (-1 == devnull)
290 if (1 != devnull)
292 dup2(devnull, 1);
293 close(devnull);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
os2emxpath.py 19 "extsep","devnull","realpath","supports_unicode_filenames"]
29 devnull = 'nul' variable
macpath.py 14 "devnull","realpath","supports_unicode_filenames"]
24 devnull = 'Dev:Null' variable
ntpath.py 21 "extsep","devnull","realpath","supports_unicode_filenames","relpath"]
36 devnull = 'nul' variable
posixpath.py 34 "devnull","realpath","supports_unicode_filenames","relpath"]
44 devnull = '/dev/null' variable
  /prebuilts/gdb/linux-x86/lib/python2.7/
os2emxpath.py 19 "extsep","devnull","realpath","supports_unicode_filenames"]
29 devnull = 'nul' variable
macpath.py 14 "devnull","realpath","supports_unicode_filenames"]
24 devnull = 'Dev:Null' variable
ntpath.py 21 "extsep","devnull","realpath","supports_unicode_filenames","relpath"]
36 devnull = 'nul' variable
posixpath.py 34 "devnull","realpath","supports_unicode_filenames","relpath"]
44 devnull = '/dev/null' variable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os2emxpath.py 19 "extsep","devnull","realpath","supports_unicode_filenames"]
29 devnull = 'nul' variable
macpath.py 14 "devnull","realpath","supports_unicode_filenames"]
24 devnull = 'Dev:Null' variable
ntpath.py 21 "extsep","devnull","realpath","supports_unicode_filenames","relpath"]
36 devnull = 'nul' variable
posixpath.py 34 "devnull","realpath","supports_unicode_filenames","relpath"]
44 devnull = '/dev/null' variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os2emxpath.py 19 "extsep","devnull","realpath","supports_unicode_filenames"]
29 devnull = 'nul' variable
macpath.py 14 "devnull","realpath","supports_unicode_filenames"]
24 devnull = 'Dev:Null' variable
ntpath.py 21 "extsep","devnull","realpath","supports_unicode_filenames","relpath"]
36 devnull = 'nul' variable
posixpath.py 34 "devnull","realpath","supports_unicode_filenames","relpath"]
44 devnull = '/dev/null' variable
  /external/skia/src/core/
SkPictureData.cpp 269 struct DevNull: public SkWStream {
270 DevNull() : fBytesWritten(0) {}
274 } devnull; local
276 fPictureRefs[i]->serialize(&devnull, pixelSerializer, typefaceSet);
  /libcore/ojluni/src/main/java/sun/nio/ch/
InheritedChannel.java 58 private static int devnull = -1; field in class:InheritedChannel
62 dup2(devnull, 0);
63 dup2(devnull, 1);
64 dup2(devnull, 2);
208 if (devnull < 0) {
209 devnull = open0("/dev/null", O_RDWR);
  /frameworks/base/core/jni/
com_android_internal_os_Zygote.cpp 375 int devnull; local
377 devnull = open("/dev/null", O_RDWR);
378 if (devnull < 0) {
384 if (dup2(devnull, ar[i]) < 0) {
388 close(devnull);

Completed in 866 milliseconds

1 2