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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/bin/self-test/
test_redirect 4 stdout = fd_stack(1, sys.stdout) variable
7 print "About to redirect stdout 1"
8 os.system ("echo About to redirect stdout 2")
10 stdout.redirect("test_logfile.stdout")
11 print "This should go into the stdout logfile 1"
12 os.system ("echo This should go into the stdout logfile 2")
14 sys.stderr.write ("This should go into the stdout logfile 1\n")
17 stdout.restore(
    [all...]
  /external/skia/infra/bots/recipes/
check_generated_files.py 35 stdout=api.m.raw_io.output()).stdout
61 stdout=api.m.raw_io.output()).stdout variable
  /external/skqp/infra/bots/recipes/
check_generated_files.py 35 stdout=api.m.raw_io.output()).stdout
61 stdout=api.m.raw_io.output()).stdout variable
  /external/syslinux/dos/
stdio.h 16 #define stdout 1 macro
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
CaliperMain.java 64 PrintWriter stdout = new PrintWriter(System.out, true); local
69 exitlessMain(args, stdout, stderr);
84 stdout.println();
85 stdout.println("An unexpected exception has been thrown by the caliper runner.");
86 stdout.println("Please see https://sites.google.com/site/caliperusers/issues");
89 stdout.flush();
96 public static void exitlessMain(String[] args, PrintWriter stdout, PrintWriter stderr)
105 .outputModule(new OutputModule(stdout, stderr))
109 stdout.println("Configuration:");
113 stdout.printf(" %s = %s%n", entry.getKey(), entry.getValue())
    [all...]
ConsoleOutput.java 25 import com.google.caliper.util.Stdout;
50 private final PrintWriter stdout; field in class:ConsoleOutput
61 ConsoleOutput(@Stdout PrintWriter stdout, int numberOfTrials, Stopwatch stopwatch) {
62 this.stdout = stdout;
74 stdout.println(
77 stdout.flush();
85 stdout.printf("Trial Report (%d of %d):%n Experiment %s%n",
88 stdout.println(" Messages:")
    [all...]
  /external/autotest/client/bin/
autotestd 14 # routed to stderr and fd1 & fd2 to stdout
20 stdout = open(os.path.join(logdir, 'stdout'), 'a', 0) variable
24 os.dup2(stdout.fileno(), 1)
25 os.dup2(stdout.fileno(), 2)
29 stdout.close()
  /external/boringssl/src/crypto/test/
gtest_main.h 43 ERR_print_errors_fp(stdout); variable
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
OutputModule.java 25 * A module that binds {@link PrintWriter} instances for {@link Stdout} and {@link Stderr}.
33 private final PrintWriter stdout; field in class:OutputModule
36 public OutputModule(PrintWriter stdout, PrintWriter stderr) {
37 this.stdout = checkNotNull(stdout);
41 @Provides @Stdout PrintWriter provideStdoutWriter() {
42 return stdout;
  /external/mesa3d/src/mesa/drivers/dri/
gen-symbol-redefs.py 47 stdout = subprocess.check_output(['nm', args.file]) variable
49 for line in stdout.splitlines():
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mkbuiltin.go 28 var stdout = flag.Bool("stdout", false, "write to stdout instead of builtin.go") var
46 if *stdout {
47 _, err = os.Stdout.Write(out)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mkbuiltin.go 28 var stdout = flag.Bool("stdout", false, "write to stdout instead of builtin.go") var
46 if *stdout {
47 _, err = os.Stdout.Write(out)
  /system/bt/build/toolchain/clang/
get_clang_suffix.py 20 stdout=subprocess.PIPE).communicate()[0] variable
  /tools/test/connectivity/acts/framework/acts/libs/proc/
job.py 58 def stdout(self): member in class:Result
75 stdout=bytes(),
85 stdout: The raw bytes that standard output gave.
94 self._raw_stdout = stdout
103 return ('job.Result(command=%r, stdout=%r, stderr=%r, exit_status=%r, '
142 stdout=subprocess.PIPE,
158 stdout=out,
200 stdout=DEVNULL,
201 stderr=subprocess.STDOUT)
  /tools/test/connectivity/tools/lab/utils/
job.py 58 def stdout(self): member in class:Result
75 stdout=bytes(),
85 stdout: The raw bytes that standard output gave.
94 self._raw_stdout = stdout
103 return ('job.Result(command=%r, stdout=%r, stderr=%r, exit_status=%r, '
142 stdout=subprocess.PIPE,
158 stdout=out,
200 stdout=DEVNULL,
201 stderr=subprocess.STDOUT)
  /development/cmds/monkey/src/com/android/commands/monkey/
Logger.java 26 if (stdout) {
36 if (stdout) {
45 public static boolean stdout = true; field in class:Logger
  /external/gptfdisk/
sgdisk.cc 41 int stdout = dup(STDOUT_FILENO); local
86 write(stdout, resString.c_str(), resString.length());
  /external/kmod/testsuite/
test-loaded.c 68 fputs(kmod_module_get_name(hm), stdout); local
  /external/libevent/sample/
http-connect.c 34 fwrite(evbuffer_pullup(evbuf, len), len, 1, stdout); local
  /libcore/ojluni/src/main/java/java/lang/
UNIXProcess.java 61 private /* final */ InputStream stdout; field in class:UNIXProcess
162 stdout = (fds[1] == -1) ?
184 if (stdout instanceof ProcessPipeInputStream)
185 ((ProcessPipeInputStream) stdout).processExited();
199 return stdout;
233 try { stdout.close(); } catch (IOException ignored) {}
  /prebuilts/go/darwin-x86/src/runtime/
mksizeclasses.go 45 var stdout = flag.Bool("stdout", false, "write to stdout instead of sizeclasses.go") var
65 if *stdout {
66 _, err = os.Stdout.Write(out)
  /prebuilts/go/linux-x86/src/runtime/
mksizeclasses.go 45 var stdout = flag.Bool("stdout", false, "write to stdout instead of sizeclasses.go") var
65 if *stdout {
66 _, err = os.Stdout.Write(out)
  /system/update_engine/common/
subprocess.h 55 // code and the stdout output (and stderr if redirected).
69 // know the reader end in the parent. Only stdin, stdout, stderr and the file
88 // Executes a command synchronously. Returns true on success. If |stdout| is
90 // logged. Note that stderr is redirected to stdout.
93 std::string* stdout);
97 std::string* stdout);
121 // These are used to monitor the stdout of the running process, including
126 std::string stdout; member in struct:chromeos_update_engine::Subprocess::SubprocessRecord
130 // stdout pipe.
  /test/vts/drivers/shell/
ShellDriver.h 30 string stdout; member in struct:android::vts::CommandResult
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
SystemUtil.java 75 StringBuffer stdout = new StringBuffer(); local
77 stdout.append(new String(buf, 0, bytesRead));
80 return stdout.toString();

Completed in 2122 milliseconds

1 2 3 4 5 6 7 8 91011>>