Home
last modified time | relevance | path

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

12

/art/test/testrunner/
Drun_build_test_target.py76 sys.stdout.write(str(build_command) + '\n')
77 sys.stdout.flush()
89 sys.stdout.write(str(build_command) + '\n')
90 sys.stdout.flush()
106 sys.stdout.write(str(cmd) + '\n')
107 sys.stdout.flush()
136 sys.stdout.write(str(run_test_command) + '\n')
137 sys.stdout.flush()
Dtestrunner.py59 sys.stdout.write("\n\n" + sys.executable + " " + sys.version + "\n\n")
60 sys.stdout.flush()
282 if not sys.stdout.isatty():
307 stdout = subprocess.PIPE,
567 return subprocess.Popen(encoding=sys.stdout.encoding, **kwargs)
608 stdout = subprocess.PIPE,
639 pidof = subprocess.run(["adb", "shell", "pidof", proc_name], stdout=subprocess.PIPE)
640 for pid in pidof.stdout.decode("ascii").split():
646 tids = subprocess.run(["adb", "shell", "ls", task_dir], stdout=subprocess.PIPE)
647 for tid in tids.stdout.decode("ascii").split():
[all …]
/art/test/2033-shutdown-mechanics/
Dnative_shutdown.cc46 fflush(stdout); in Java_Main_monitorShutdown()
52 fflush(stdout); in Java_Main_monitorShutdown()
58 fflush(stdout); in Java_Main_monitorShutdown()
/art/tools/
Dwrap-logcat.py47 stdout=args.output,
53 stdout=None,
Dparallel_run.py36 return tmpfile, subprocess.run(cmd, stdout=fd).returncode
/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,
443 logcat_proc = Popen(logcat_cmd, stdout=PIPE, stderr=STDOUT,
501 stdout=self._logfile, stderr=self._logfile)
505 stdout=self._logfile, stderr=self._logfile)
512 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(content, 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.cc105 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/compiler/optimizing/
Doptimizing_cfi_test.cc104 GenerateExpected(stdout, isa, isa_str, actual_asm, actual_cfi); in Check()
/art/dexlist/
Ddexlist.cc53 static FILE* gOutFile = stdout;
/art/runtime/
Dparsed_options.cc584 UsageMessage(stdout, "%s\n", parse_result.GetMessage().c_str()); in DoParse()
605 UsageMessage(stdout, in DoParse()
733 FILE* stream = error ? stderr : stdout; in Usage()
/art/tools/jvmti-agents/field-counts/
Dcount-fields.py94 p = subprocess.Popen([device.adb_path, "jdwp"], env=new_env, stdout=subprocess.PIPE)
/art/test/988-method-trace/
Dgen_srcs.py284 …parser.add_argument('output_file', nargs='?', metavar='<output-file>', default=sys.stdout, type=ar…
/art/tools/bisection_search/
Dbisection_search.py240 stdout=self._logfile, stderr=self._logfile, universal_newlines=True)
/art/build/apex/
Dart_apex_test.py100 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
102 stdout, _ = process.communicate()
103 res = str(stdout)
/art/test/
Drun-test560 tmp_dir="`cd $oldwd ; python -c "import os; import sys; sys.stdout.write(os.path.realpath('$tmp_dir…

12