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

  /external/webkit/Tools/Scripts/
run-jsc 48 $jsc .= " 2> " . File::Spec->devnull() unless $verbose;
run-mangleme-tests 156 while (system("/usr/bin/curl -q --silent --stderr - --output " . File::Spec->devnull() . " $listen") && $retryCount) {
run-api-tests 136 local *DEVNULL;
139 open(DEVNULL, ">", File::Spec->devnull()) or die "Failed to open /dev/null";
140 $childOut = ">&DEVNULL";
141 $childErr = ">&DEVNULL";
157 close(DEVNULL) unless ($verbose);
191 local *DEVNULL;
194 open(DEVNULL, ">", File::Spec->devnull()) or die "Failed to open /dev/null";
195 $childErr = ">&DEVNULL";
    [all...]
svn-create-patch 81 my $devNull = File::Spec->devnull();
315 print `svn cat ${sourceFile} | diff -u $devNull - | tail -n +3`;
VCSUtils.pm 197 return system("cd $dir && git rev-parse > " . File::Spec->devnull() . " 2>&1") == 0;
307 open INFO, "svn info '$path' 2> " . File::Spec->devnull() . " |" or die;
    [all...]
bisect-builds 369 my $devNull = File::Spec->devnull();
375 `hdiutil detach '$mountPath' 2> $devNull`;
400 `hdiutil detach '$mountPath' 2> $devNull`;
resolve-ChangeLogs 375 open(PATCH, "| patch -p1 $file > " . File::Spec->devnull()) or die $!;
webkitdirs.pm 143 open PRODUCT, "defaults read com.apple.Xcode PBXApplicationwideBuildSettings 2> " . File::Spec->devnull() . " |" or die;
151 open PRODUCT, "defaults read com.apple.Xcode PBXProductDirectory 2> " . File::Spec->devnull() . " |" or die;
704 my $devnull = File::Spec->devnull();
705 return `$command --version 2> $devnull`;
    [all...]
old-run-webkit-tests     [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os_unix.c 89 int devnull; local
94 devnull = open("/dev/null", O_RDWR);
95 if (devnull < 0)
98 if (dup2(devnull, STDIN_FILENO) < 0) {
99 close(devnull);
103 if (dup2(devnull, STDOUT_FILENO) < 0) {
104 close(devnull);
108 if (dup2(devnull, STDERR_FILENO) < 0) {
109 close(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);
  /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/clang/tools/scan-view/
startfile.py 45 inout = file(os.devnull, 'r+')
  /external/openssl/ssl/
d1_both.c 630 unsigned char devnull [256]; local
635 devnull,
636 frag_len>sizeof(devnull)?sizeof(devnull):frag_len,0);
720 unsigned char devnull [256]; local
725 devnull,
726 frag_len>sizeof(devnull)?sizeof(devnull):frag_len,0);
    [all...]
  /external/openssh/
ssh.c 960 int devnull; local
987 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
991 if (dup2(devnull, STDIN_FILENO) == -1 ||
992 dup2(devnull, STDOUT_FILENO) == -1)
994 if (devnull > STDERR_FILENO)
995 close(devnull);
    [all...]
mux.c 1639 int devnull, rawmode; local
1802 int devnull; local
    [all...]
  /system/core/sh/
jobs.c 900 const char *devnull = _PATH_DEVNULL; local
935 if (open(devnull, O_RDONLY) != 0)
936 error(nullerr, devnull);
946 if (open(devnull, O_RDONLY) != 0)
947 error(nullerr, devnull);
  /build/tools/releasetools/
common.py 317 devnull = open("/dev/null", "w+b")
326 stdin=devnull.fileno(),
327 stdout=devnull.fileno(),
334 devnull.close()
  /external/webkit/PerformanceTests/SunSpider/
sunspider 168 my $shellArgs = $jsShellArgs . " -f $prefixFile -f resources/sunspider-standalone-driver.js 2> " . File::Spec->devnull();
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
websocket_server.py 200 stdin=open(os.devnull, 'r'),
  /external/webkit/Tools/Scripts/webkitpy/common/system/
executive.py 147 dev_null = open(os.devnull, "w") # FIXME: Does this need an encoding?
  /external/libsepol/tests/policies/test-cond/
refpolicy-base.conf 82 sid devnull
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
scm_unittest.py 234 self.dev_null = open(os.devnull, "w") # Used to make our Popen calls quiet.
    [all...]
  /external/bison/tests/
testsuite 875 at_devnull=$at_suite_dir/devnull
    [all...]

Completed in 555 milliseconds