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

1 2 3 4 5 6

  /external/chromium_org/tools/gyp/test/rules/
gyptest-all.py 16 stderr=None) variable
  /external/valgrind/main/cachegrind/tests/
dlclose.c 21 fputs (dlerror(), stderr); local
27 fprintf (stderr, "%s\n", error);
  /external/chromium_org/tools/gyp/test/errors/
gyptest-errors.py 20 stderr = ('gyp: Duplicate target definitions for ' variable
22 test.run_gyp('duplicate_targets.gyp', status=1, stderr=stderr,
25 stderr = ('.*: Unable to find targets in build file .*missing_targets.gyp.*') variable
26 test.run_gyp('missing_targets.gyp', status=1, stderr=stderr,
29 stderr = ('gyp: rule bar exists in duplicate, target ' variable
31 test.run_gyp('duplicate_rule.gyp', status=1, stderr=stderr,
34 stderr = ("gyp: Key 'targets' repeated at level 1 with key path '' while variable
39 stderr = 'gyp: Duplicate basenames in sources section, see list above\\n' variable
42 stderr = ("gyp: Dependency '.*missing_dep.gyp:missing.gyp#target' not found " variable
    [all...]
  /external/chromium_org/tools/gyp/test/mac/
gyptest-xctest.py 22 stderr=subprocess.STDOUT) variable
gyptest-postbuild-fail.py 16 # set |match| to ignore build stderr output.
38 stderr=subprocess.STDOUT) variable
  /external/compiler-rt/SDKs/darwin/usr/include/
stdio.h 60 # define stderr __stderrp macro
  /external/chromium_org/third_party/libxml/src/
testRelax.c 106 stderr); local
117 stderr); local
140 fprintf(stderr, "Could not parse %s\n", argv[i]);
149 stderr); local
testSchemas.c 102 stderr); local
113 stderr); local
131 fprintf(stderr, "Could not parse %s\n", argv[i]);
140 stderr); local
  /external/e2fsprogs/lib/et/
com_err.c 34 int do_cr = 1, fd = fileno(stderr);
37 fputs(whoami, stderr);
38 fputs(": ", stderr);
41 fputs(error_message(code), stderr); local
42 fputs(" ", stderr);
45 vfprintf (stderr, fmt, args);
59 fputc('\r', stderr);
60 fputc('\n', stderr);
61 fflush(stderr);
  /external/stlport/stlport/stl/
_cstdio.h 40 # undef stderr macro
43 # define stderr (&_STLP_VENDOR_CSTD::__files[2]) macro
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h 40 # undef stderr macro
43 # define stderr (&_STLP_VENDOR_CSTD::__files[2]) macro
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h 40 # undef stderr macro
43 # define stderr (&_STLP_VENDOR_CSTD::__files[2]) macro
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h 40 # undef stderr macro
43 # define stderr (&_STLP_VENDOR_CSTD::__files[2]) macro
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h 40 # undef stderr macro
43 # define stderr (&_STLP_VENDOR_CSTD::__files[2]) macro
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_cstdio.h 40 # undef stderr macro
43 # define stderr (&_STLP_VENDOR_CSTD::__files[2]) macro
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_cstdio.h 40 # undef stderr macro
43 # define stderr (&_STLP_VENDOR_CSTD::__files[2]) macro
  /external/ganymed-ssh2/examples/
StdoutAndStderr.java 43 sess.execCommand("echo \"Text on STDOUT\"; echo \"Text on STDERR\" >&2");
46 InputStream stderr = new StreamGobbler(sess.getStderr()); local
49 BufferedReader stderrReader = new BufferedReader(new InputStreamReader(stderr));
61 System.out.println("Here is the output from stderr:");
SingleThreadStdoutStderr.java 41 sess.execCommand("echo \"Huge amounts of text on STDOUT\"; echo \"Huge amounts of text on STDERR\" >&2");
46 * stderr without having to use two parallel worker threads (i.e.,
57 InputStream stderr = sess.getStderr(); local
63 if ((stdout.available() == 0) && (stderr.available() == 0))
105 * OKOK, that all matters only if you get HUGE amounts of stdout and stderr data =)
115 while (stderr.available() > 0)
117 int len = stderr.read(buffer);
  /system/core/sh/bltin/
bltin.h 49 #undef stderr macro
54 #define stderr out2 macro
83 #define INITARGS(argv) if ((commandname = argv[0]) == NULL) {fputs("Argc is zero\n", stderr); exit(2);} else
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
stdio.h 147 extern struct _IO_FILE *stderr; /* Standard error output stream. */
151 #define stderr stderr macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
stdio.h 147 extern struct _IO_FILE *stderr; /* Standard error output stream. */
151 #define stderr stderr macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
stdio.h 147 extern struct _IO_FILE *stderr; /* Standard error output stream. */
151 #define stderr stderr macro
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/
NdkHelper.java 73 ByteArrayOutputStream stderr = new ByteArrayOutputStream(); local
74 launcher.waitAndRead(stdout, stderr, monitor);
121 ByteArrayOutputStream stderr = new ByteArrayOutputStream(); local
122 launcher.waitAndRead(stdout, stderr, monitor);
  /libcore/luni/src/test/java/tests/api/java/lang/
ProcessTest.java 72 String stderr = readAndCloseStream(p.getErrorStream()); local
73 assertEquals("", stderr);
88 String stderr = readAndCloseStream(p.getErrorStream()); local
89 assertTrue(stderr, stderr.contains("unrecognized option") || stderr.contains("invalid option"));
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitBaseTest.java 58 protected String stderr; field in class:gUnitBaseTest
82 PrintStream ps2 = null; // for redirecting stderr later
112 this.stderr = null;
115 this.stderr = err.toString();
116 return this.stderr;
137 if ( e.getCause()!=null ) this.stderr = e.getCause().toString();
138 else this.stderr = e.toString();
139 return this.stderr;
174 PrintStream ps2 = null; // for redirecting stderr later
242 this.stderr = ""
    [all...]

Completed in 1292 milliseconds

1 2 3 4 5 6