Home
last modified time | relevance | path

Searched refs:stdout (Results 1 – 22 of 22) sorted by relevance

/art/test/testrunner/
Drun_build_test_target.py72 sys.stdout.write(str(build_command) + '\n')
73 sys.stdout.flush()
85 sys.stdout.write(str(build_command) + '\n')
86 sys.stdout.flush()
102 sys.stdout.write(str(cmd) + '\n')
103 sys.stdout.flush()
130 sys.stdout.write(str(run_test_command) + '\n')
131 sys.stdout.flush()
Dtestrunner.py242 if not sys.stdout.isatty():
267 stdout = subprocess.PIPE,
565 proc = subprocess.Popen(command.split(), stderr=subprocess.STDOUT, stdout = subprocess.PIPE,
795 sys.stdout.write(output)
796 sys.stdout.flush()
908 cpu_info_proc = subprocess.Popen(adb_command.split(), stdout=subprocess.PIPE)
909 cpu_info = cpu_info_proc.stdout.read()
/art/tools/
Dwrap-logcat.py47 stdout=args.output,
53 stdout=None,
/art/test/909-attach-agent/
Dattach.cc31 fprintf(stdout, "%s\n", c); in Println()
32 fflush(stdout); in Println()
/art/tools/common/
Dcommon.py132 def RunCommandForOutput(cmd, env, stdout, stderr, timeout=60): argument
148 proc = Popen(cmd, stdout=stdout, stderr=stderr, env=env,
441 logcat_proc = Popen(logcat_cmd, stdout=PIPE, stderr=STDOUT,
499 stdout=self._logfile, stderr=self._logfile)
503 stdout=self._logfile, stderr=self._logfile)
510 check_call(shlex.split(cmd), stdout=self._logfile, stderr=self._logfile)
/art/dexlayout/
Ddexlayout_main.cc181 FILE* out_file = stdout; in DexlayoutDriver()
221 CHECK(out_file != nullptr && out_file != stdout); in DexlayoutDriver()
Ddex_visualize.cc321 fprintf(stdout, "%s (%d bytes)\n", in ShowDexSectionStatistics()
324 fprintf(stdout, "section offset items bytes pages pct\n"); in ShowDexSectionStatistics()
333 fprintf(stdout, in ShowDexSectionStatistics()
342 fprintf(stdout, "\n"); in ShowDexSectionStatistics()
/art/tools/checker/common/
Dlogger.py28 def terminalCode(color, out=sys.stdout):
47 def log(text, level=Level.Info, color=Color.Default, newLine=True, out=sys.stdout):
/art/tools/jfuzz/
Drun_jfuzz_test_nightly.py55 processes.append(subprocess.Popen(cmd, stdout=output_file,
Drun_jfuzz_test.py447 sys.stdout.flush()
565 subprocess.check_call(script_cmd, stdout=DEVNULL, stderr=DEVNULL)
DREADME.md36 The current version of JFuzz sends all output to stdout, and uses
Djfuzz.cc1358 JFuzz fuzz(stdout, seed, expr_depth, stmt_length, if_nest, loop_nest, try_nest); in main()
/art/compiler/jni/
Djni_cfi_test.cc98 GenerateExpected(stdout, in TestImplSized()
/art/dalvikvm/
Ddalvikvm.cc109 setvbuf(stdout, nullptr, _IONBF, 0); in dalvikvm()
/art/tools/jvmti-agents/field-null-percent/
Dcheck-null-fields.py94 p = subprocess.Popen([device.adb_path, "jdwp"], env=new_env, stdout=subprocess.PIPE)
/art/dexlist/
Ddexlist.cc53 static FILE* gOutFile = stdout;
/art/test/988-method-trace/
Dgen_srcs.py284 …parser.add_argument('output_file', nargs='?', metavar='<output-file>', default=sys.stdout, type=ar…
/art/build/apex/
Dart_apex_test.py68 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
70 stdout, _ = process.communicate()
71 res = str(stdout)
/art/runtime/
Dparsed_options.cc517 UsageMessage(stdout, "%s\n", parse_result.GetMessage().c_str()); in DoParse()
538 UsageMessage(stdout, in DoParse()
671 FILE* stream = error ? stderr : stdout; in Usage()
/art/compiler/optimizing/
Doptimizing_cfi_test.cc106 GenerateExpected(stdout, isa, isa_str, actual_asm, actual_cfi); in Check()
/art/tools/bisection_search/
Dbisection_search.py242 stdout=self._logfile, stderr=self._logfile, universal_newlines=True)
/art/dexdump/
Ddexdump.cc67 FILE* gOutFile = stdout;