HomeSort by relevance Sort by last modified time
    Searched defs:stderr (Results 26 - 50 of 340) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/os/exec/
exec.go 93 // Stdout and Stderr specify the process's standard output and error.
106 // If Stdout and Stderr are the same writer, and have a type that can
109 Stderr io.Writer
246 func (c *Cmd) stderr() (f *os.File, err error) { func
247 if c.Stderr != nil && interfaceEqual(c.Stderr, c.Stdout) {
250 return c.writerDescriptor(c.Stderr)
291 // copying stdin, stdout, and stderr, and exits with a zero exit
367 for _, setupFd := range []F{(*Cmd).stdin, (*Cmd).stdout, (*Cmd).stderr} {
418 // Stderr holds a subset of the standard error output from th
    [all...]
  /prebuilts/go/linux-x86/src/os/exec/
exec.go 93 // Stdout and Stderr specify the process's standard output and error.
106 // If Stdout and Stderr are the same writer, and have a type that can
109 Stderr io.Writer
246 func (c *Cmd) stderr() (f *os.File, err error) { func
247 if c.Stderr != nil && interfaceEqual(c.Stderr, c.Stdout) {
250 return c.writerDescriptor(c.Stderr)
291 // copying stdin, stdout, and stderr, and exits with a zero exit
367 for _, setupFd := range []F{(*Cmd).stdin, (*Cmd).stdout, (*Cmd).stderr} {
418 // Stderr holds a subset of the standard error output from th
    [all...]
  /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);
  /tools/tradefederation/core/src/com/android/tradefed/util/
AaptParser.java 117 String stderr = result.getStderr(); local
118 if (stderr != null && !stderr.isEmpty()) {
119 CLog.e("aapt dump badging stderr: %s", stderr);
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
RunUtilTest.java 70 OutputStream stderr,
75 result, stdout, stderr, closeStreamAfterRun, command);
294 File stderr = null; local
300 stderr = FileUtil.createTempFile("stderr_subprocess_", ".txt");
301 stderrStream = new FileOutputStream(stderr);
315 assertTrue(stderr.exists());
318 assertEquals("", FileUtil.readStringFromFile(stderr));
323 FileUtil.deleteFile(stderr);
347 File stderr = null; local
354 stderr = FileUtil.createTempFile("stderr_subprocess_", ".txt")
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 20 FILE *stderr = NULL; variable
  /external/autotest/client/common_lib/cros/network/
iw_runner_unittest.py 20 def __init__(self, stdout, stderr, exit_status):
22 self._stderr = stderr
33 def stderr(self): member in class:IwRunnerTest.host_cmd
34 """Returns stderr."""
  /external/iproute2/tc/
m_ipt.c 70 fprintf(stderr, "Try `%s -h' or '%s --help' for more information.\n",
80 fprintf(stderr, "%s v%s: ", pname, pversion);
81 vfprintf(stderr, msg, args);
83 fprintf(stderr, "\n");
87 fprintf(stderr,
212 fputs(dlerror(), stderr); local
228 fputs(error, stderr);
229 fprintf(stderr, "\n");
311 fprintf(stderr, "bad arguments to ipt %d vs %d\n", argc, rargc);
332 fprintf(stderr, " failed to find target %s\n\n", optarg)
    [all...]
  /external/llvm/utils/
extract_symbols.py 354 stderr=subprocess.PIPE, variable
358 p.stderr.close()
372 print("Couldn't find a program to read symbols with", file=sys.stderr)
375 print("Couldn't find a program to determing the target", file=sys.stderr)
401 print("Don't know what to do with argument "+lib, file=sys.stderr)
  /external/toolchain-utils/automation/common/
command_executer_test.py 57 # We will record stdout and stderr.
66 def stderr(self): member in class:CommandExecuterUnderTest
111 self.assertEquals(self._executer.stderr, '')
116 self.assertEquals(self._executer.stderr, 'test')
127 'stderr stream is a terminal!')
173 sys.stderr.write('test')
180 return sys.stderr.isatty()
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdio.h 171 extern struct _IO_FILE *stderr; /* Standard error output stream. */
175 #define stderr stderr macro
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
JacocoCodeCoverageTestTest.java 184 String stderr = "something went wrong"; local
187 fakeCommandResult.setStderr(stderr);
200 assertTrue(e.getMessage().contains(stderr));
  /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...]
  /frameworks/base/tests/BackgroundDexOptServiceIntegrationTests/src/com/android/server/pm/
BackgroundDexOptServiceIntegrationTests.java 153 String stderr = inputStreamToString(p.getErrorStream()); local
159 Log.i(TAG, "stderr");
160 Log.i(TAG, stderr);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessTest.java 76 String stderr = readAndCloseStream(p.getErrorStream()); local
77 assertEquals("", stderr);
92 String stderr = readAndCloseStream(p.getErrorStream()); local
93 assertTrue(stderr, stderr.contains("no-such-option"));
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
SubprocessTfLauncher.java 244 FileOutputStream stderr = null; local
252 stderr = new FileOutputStream(stderrFile);
266 stderr, mCmdArgs.toArray(new String[0]));
302 StreamUtil.close(stderr);
348 * Extra test to ensure no abnormal logging is made to stderr when all the tests pass.
350 * @param stdErrFile the stderr log file of the subprocess.
355 listener.testRunStarted("StdErr", 1);
356 TestDescription tid = new TestDescription("stderr-test", "checkIsEmpty");
361 "Found some output in stderr:\n%s",
  /device/linaro/bootloader/edk2/StdLib/Include/
stdio.h 325 #define stderr (&__sF[2]) /**< FILE reference for the STanDard ERRor stream. */ macro
    [all...]
  /external/python/cpython3/Modules/
_threadmodule.c 20 _Py_IDENTIFIER(stderr); variable
1013 PyObject_Print(boot->func, stderr, 0);
    [all...]
faulthandler.c 36 _Py_IDENTIFIER(stderr); variable
133 If file is NULL or Py_None, use sys.stderr as the new file.
150 PyErr_SetString(PyExc_RuntimeError, "unable to get sys.stderr");
154 PyErr_SetString(PyExc_RuntimeError, "sys.stderr is None");
1153 PyDoc_STR("enable(file=sys.stderr, all_threads=True): "
1161 PyDoc_STR("dump_traceback(file=sys.stderr, all_threads=True): "
1180 PyDoc_STR("register(signum, file=sys.stderr, all_threads=True, chain=False): "
    [all...]
  /external/python/cpython3/Python/
errors.c 24 _Py_IDENTIFIER(stderr); variable
_warnings.c 18 _Py_IDENTIFIER(stderr); variable
324 fprintf(stderr, "lost sys.stderr\n");
    [all...]
  /bionic/libc/stdio/
stdio.cpp 83 // for stdin/stdout/stderr; they were macros accessing __sF.
92 FILE* stderr = &__sF[2]; variable
339 // assume stderr is always fd STDERR_FILENO, even if being freopen'd.
839 fprintf(stderr, "%s%s%s\n", msg, (*msg == '\0') ? "" : ": ", strerror(errno));
  /external/e2fsprogs/misc/
badblocks.c 96 fprintf(stderr, _(
107 fprintf(stderr,
234 fputs(line_buf, stderr);
237 fputs(line_buf, stderr);
238 fflush (stderr);
255 fprintf(stderr, "\n\nInterrupted at block %llu\n",
257 fflush(stderr);
328 fputs(_("Testing with random pattern: "), stderr);
346 fputs(_("Testing with pattern 0x"), stderr);
348 fprintf(stderr, "%02x", buffer[i])
580 fputs(_(done_string), stderr); local
672 fputs(_(done_string), stderr); local
719 fputs(_(done_string), stderr); local
971 fputs(_(done_string), stderr); local
    [all...]
fsck.c 343 fprintf(stderr, _("WARNING: couldn't open %s: %s\n"),
353 fprintf(stderr, _("WARNING: bad format "
368 fputs("\007\007\007", stderr);
372 " should fix your /etc/fstab file as soon as you can.\n\n"), stderr);
478 fprintf(stderr, _("fsck: %s: not found\n"), prog);
593 fprintf(stderr,
721 fprintf(stderr, _("%s: Error %d while executing fsck.%s "
762 stderr);
798 fputs(_(fs_type_syntax_error), stderr); local
883 fprintf(stderr,
    [all...]
  /external/libxml2/
debugXML.c 2369 stderr); local
2381 stderr); local
    [all...]

Completed in 2125 milliseconds

12 3 4 5 6 7 8 91011>>