HomeSort by relevance Sort by last modified time
    Searched defs:stdout (Results 51 - 75 of 759) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 22 FILE *stdout = NULL; variable
  /external/autotest/client/common_lib/cros/network/
iw_runner_unittest.py 20 def __init__(self, stdout, stderr, exit_status):
21 self._stdout = stdout
27 def stdout(self): member in class:IwRunnerTest.host_cmd
28 """Returns stdout."""
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
StreamServiceTest.java 66 private final PrintWriter stdout = new PrintWriter(writer, true); field in class:StreamServiceTest
203 return new FileAndWriter(new File("/tmp/not-a-file"), stdout);
  /external/python/cpython3/Lib/
subprocess.py 27 STDOUT: Special value that indicates that stderr should go to stdout
37 stdout instead of a return code
65 cmd, returncode, stdout, stderr, output
86 def stdout(self): member in class:CalledProcessError
90 @stdout.setter
91 def stdout(self, value): member in class:CalledProcessError
93 # .stdout is a transparent alias for .output
102 cmd, output, stdout, stderr, timeout
115 def stdout(self) member in class:TimeoutExpired
119 def stdout(self, value): member in class:TimeoutExpired
    [all...]
  /external/toolchain-utils/automation/common/
command_executer_test.py 57 # We will record stdout and stderr.
62 def stdout(self): member in class:CommandExecuterUnderTest
112 self.assertEquals(self._executer.stdout, 'test')
117 self.assertEquals(self._executer.stdout, '')
122 'stdout stream is a terminal!')
144 lines = self._executer.stdout.splitlines()
169 sys.stdout.write('test')
177 return sys.stdout.isatty()
  /packages/apps/Traceur/src/com/google/android/traceur/
AtraceUtils.java 99 new Streamer("atraceDump:ps:stdout",
123 BufferedReader stdout = new BufferedReader( local
132 while ((line = stdout.readLine()) != null) {
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
ProcessStatusTracker.java 232 ParcelFileDescriptor stdout = getUiAutomation().executeShellCommand(command); local
235 new ParcelFileDescriptor.AutoCloseInputStream(stdout)));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdio.h 170 extern struct _IO_FILE *stdout; /* Standard output stream. */
174 #define stdout stdout macro
359 /* Write formatted output to stdout.
374 /* Write formatted output to stdout from argument list ARG.
582 /* Write a character to stdout.
688 /* Write a string, followed by a newline, to stdout.
  /system/update_engine/payload_generator/
squashfs_filesystem.cc 87 string stdout; local
89 if (!Subprocess::SynchronousExec(cmd, &exit_code, &stdout) ||
91 LOG(ERROR) << "Failed to run unsquashfs -m. The stdout content was: "
92 << stdout;
  /toolchain/binutils/binutils-2.27/binutils/
size.c 236 usage (stdout, 0);
255 fputs ("(TOTALS)\n", stdout);
327 fputs (" (core file", stdout);
504 fputs (bfd_get_filename (abfd), stdout);
500 fputs (bfd_get_filename (abfd), stdout); local
  /cts/tests/framework/base/activitymanager/util/src/android/server/am/
ActivityManagerState.java 138 ByteArrayOutputStream stdout = new ByteArrayOutputStream(); local
140 stdout.write(buf, 0, bytesRead);
143 return stdout.toByteArray();
WindowManagerState.java 166 ByteArrayOutputStream stdout = new ByteArrayOutputStream(); local
168 stdout.write(buf, 0, bytesRead);
171 return stdout.toByteArray();
    [all...]
  /cts/tests/tests/keystore/src/android/server/am/
WindowManagerState.java 133 ByteArrayOutputStream stdout = new ByteArrayOutputStream(); local
135 stdout.write(buf, 0, bytesRead);
138 return stdout.toByteArray();
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitBaseTest.java 57 protected String stdout; field in class:gUnitBaseTest
81 PrintStream ps = null; // for redirecting stdout later
111 this.stdout = null;
119 this.stdout = out.toString();
150 return this.stdout;
173 PrintStream ps = null; // for redirecting stdout later
241 this.stdout = "";
250 // retVal could be actual return object from rule, stderr or stdout
251 this.stdout += out.toString();
255 if ( out.toString().length()>0 ) return this.stdout;
    [all...]
gUnitExecutor.java 178 // Run parser, and get the return value or stdout or stderr if there is
233 PrintStream ps = null; // for redirecting stdout later
270 String stdout = null; local
272 stdout = out.toString();
274 return new gUnitTestResult(true, stdout, true);
310 PrintStream ps = null; // for redirecting stdout later
390 String stdout = null; local
391 // TODO: need to deal with the case which has both ST return value and stdout
393 stdout = out.toString();
396 return new gUnitTestResult(true, stdout, astString)
559 String stdout = null; local
    [all...]
  /frameworks/base/tests/BackgroundDexOptServiceIntegrationTests/src/com/android/server/pm/
BackgroundDexOptServiceIntegrationTests.java 141 // Run the command and return the stdout.
152 String stdout = inputStreamToString(p.getInputStream()); local
157 Log.i(TAG, "stdout");
158 Log.i(TAG, stdout);
164 return stdout;
167 // Run the command and return the stdout split by lines.
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_gdb.py 17 stdout=subprocess.PIPE).communicate() variable
36 Returns its (stdout, stderr)
47 stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env,
74 stdout, _ = run_gdb("--eval-command=python print(dir(gdb.Frame))")
75 m = re.match(r'.*\[(.*)\].*', stdout)
96 Returns the stdout from gdb
142 # Use "args" to invoke gdb, capturing stdout, stderr:
573 gdb_repr, gdb_output = self.get_gdb_repr('import sys; print sys.stdout.readlines')
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_gdb.py 17 stdout=subprocess.PIPE).communicate() variable
36 Returns its (stdout, stderr)
47 stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env,
74 stdout, _ = run_gdb("--eval-command=python print(dir(gdb.Frame))")
75 m = re.match(r'.*\[(.*)\].*', stdout)
96 Returns the stdout from gdb
142 # Use "args" to invoke gdb, capturing stdout, stderr:
573 gdb_repr, gdb_output = self.get_gdb_repr('import sys; print sys.stdout.readlines')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gdb.py 17 stdout=subprocess.PIPE).communicate() variable
36 Returns its (stdout, stderr)
47 stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env,
74 stdout, _ = run_gdb("--eval-command=python print(dir(gdb.Frame))")
75 m = re.match(r'.*\[(.*)\].*', stdout)
96 Returns the stdout from gdb
142 # Use "args" to invoke gdb, capturing stdout, stderr:
573 gdb_repr, gdb_output = self.get_gdb_repr('import sys; print sys.stdout.readlines')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gdb.py 17 stdout=subprocess.PIPE).communicate() variable
36 Returns its (stdout, stderr)
47 stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env,
74 stdout, _ = run_gdb("--eval-command=python print(dir(gdb.Frame))")
75 m = re.match(r'.*\[(.*)\].*', stdout)
96 Returns the stdout from gdb
142 # Use "args" to invoke gdb, capturing stdout, stderr:
573 gdb_repr, gdb_output = self.get_gdb_repr('import sys; print sys.stdout.readlines')
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
SubprocessTfLauncher.java 243 FileOutputStream stdout = null; local
253 stdout = new FileOutputStream(stdoutFile);
265 CommandResult result = mRunUtil.runTimedCmd(mMaxTfRunTime, stdout,
301 StreamUtil.close(stdout);
  /device/linaro/bootloader/edk2/StdLib/Include/
stdio.h 324 #define stdout (&__sF[1]) /**< FILE reference for the STanDard OUTput stream. */ macro
    [all...]
  /system/update_engine/common/
http_fetcher_unittest.cc 130 brillo::StreamPtr stdout = brillo::FileStream::FromFileDescriptor( local
132 if (!stdout)
139 if (!stdout->ReadBlocking(buf.data(), buf.size(), &read, nullptr)) {
140 ADD_FAILURE() << "error reading http server stdout";
    [all...]
  /bionic/libc/stdio/
stdio.cpp 83 // for stdin/stdout/stderr; they were macros accessing __sF.
91 FILE* stdout = &__sF[1]; variable
843 PRINTF_IMPL(vfprintf(stdout, fmt, ap));
866 return putc(c, stdout);
870 return putc_unlocked(c, stdout);
875 ScopedFileLock sfl(stdout);
876 return (fwrite_unlocked(s, 1, length, stdout) == length &&
877 putc_unlocked('\n', stdout) != EOF) ? 0 : EOF;
886 return fputwc(wc, stdout);
962 return vfprintf(stdout, fmt, ap)
    [all...]
  /external/python/cpython3/Python/
pylifecycle.c 42 _Py_IDENTIFIER(stdout); variable
488 /* Flush stdout and stderr */
583 /* Flush sys.stdout and sys.stderr */
614 /* Flush sys.stdout and sys.stderr (again, in case more was printed) */
624 * XXX cleared out (sys.stdout is gone, sys.excepthook is gone, etc).
    [all...]

Completed in 801 milliseconds

1 23 4 5 6 7 8 91011>>