/art/test/testrunner/ |
D | run_build_test_target.py | 72 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()
|
D | testrunner.py | 242 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/ |
D | wrap-logcat.py | 47 stdout=args.output, 53 stdout=None,
|
/art/test/909-attach-agent/ |
D | attach.cc | 31 fprintf(stdout, "%s\n", c); in Println() 32 fflush(stdout); in Println()
|
/art/tools/common/ |
D | common.py | 132 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/ |
D | dexlayout_main.cc | 181 FILE* out_file = stdout; in DexlayoutDriver() 221 CHECK(out_file != nullptr && out_file != stdout); in DexlayoutDriver()
|
D | dex_visualize.cc | 321 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/ |
D | logger.py | 28 def terminalCode(color, out=sys.stdout): 47 def log(text, level=Level.Info, color=Color.Default, newLine=True, out=sys.stdout):
|
/art/tools/jfuzz/ |
D | run_jfuzz_test_nightly.py | 55 processes.append(subprocess.Popen(cmd, stdout=output_file,
|
D | run_jfuzz_test.py | 447 sys.stdout.flush() 565 subprocess.check_call(script_cmd, stdout=DEVNULL, stderr=DEVNULL)
|
D | README.md | 36 The current version of JFuzz sends all output to stdout, and uses
|
D | jfuzz.cc | 1358 JFuzz fuzz(stdout, seed, expr_depth, stmt_length, if_nest, loop_nest, try_nest); in main()
|
/art/compiler/jni/ |
D | jni_cfi_test.cc | 98 GenerateExpected(stdout, in TestImplSized()
|
/art/dalvikvm/ |
D | dalvikvm.cc | 109 setvbuf(stdout, nullptr, _IONBF, 0); in dalvikvm()
|
/art/tools/jvmti-agents/field-null-percent/ |
D | check-null-fields.py | 94 p = subprocess.Popen([device.adb_path, "jdwp"], env=new_env, stdout=subprocess.PIPE)
|
/art/dexlist/ |
D | dexlist.cc | 53 static FILE* gOutFile = stdout;
|
/art/test/988-method-trace/ |
D | gen_srcs.py | 284 …parser.add_argument('output_file', nargs='?', metavar='<output-file>', default=sys.stdout, type=ar…
|
/art/build/apex/ |
D | art_apex_test.py | 68 stdout=subprocess.PIPE, stderr=subprocess.PIPE, 70 stdout, _ = process.communicate() 71 res = str(stdout)
|
/art/runtime/ |
D | parsed_options.cc | 517 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/ |
D | optimizing_cfi_test.cc | 106 GenerateExpected(stdout, isa, isa_str, actual_asm, actual_cfi); in Check()
|
/art/tools/bisection_search/ |
D | bisection_search.py | 242 stdout=self._logfile, stderr=self._logfile, universal_newlines=True)
|
/art/dexdump/ |
D | dexdump.cc | 67 FILE* gOutFile = stdout;
|