Home
last modified time | relevance | path

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

12

/build/make/tools/product_config/
Dinherit_tree.py12 sys.stdout.write("%s%s" % (prefix, node))
15 sys.stdout.write(" {\n")
18 sys.stdout.write("%s}\n" % prefix);
20 sys.stdout.write("\n")
/build/soong/ui/terminal/
Dstdio.go43 stdout io.Writer member
47 func NewCustomStdio(stdin io.Reader, stdout, stderr io.Writer) StdioInterface { argument
48 return customStdio{stdin, stdout, stderr}
52 func (c customStdio) Stdout() io.Writer { return c.stdout }
/build/make/tools/releasetools/
Dtarget_files_diff.py142 proc = subprocess.Popen(['diff', f1, f2], stdout=subprocess.PIPE,
144 (stdout, _) = proc.communicate()
147 stdout = stdout.strip()
148 if stdout == 'Binary files %s and %s differ' % (f1, f2):
151 for line in stdout.strip().split('\n'):
225 out_file = sys.stdout
Dcheck_ota_package_signature.py41 cert_dump = common.RunAndCheckOutput(cmd, stdout=subprocess.PIPE)
113 sig = common.RunAndCheckOutput(cmd, stdout=subprocess.PIPE)
125 common.RunAndCheckOutput(cmd, stdout=subprocess.PIPE)
129 decrypted_output = common.RunAndCheckOutput(cmd, stdout=subprocess.PIPE)
Dcheck_target_files_signatures.py106 stdout=subprocess.PIPE,
169 stdout=subprocess.PIPE,
226 p = common.Run(cmd, stdout=subprocess.PIPE)
266 stdout=subprocess.PIPE)
Dcheck_target_files_signatures106 stdout=subprocess.PIPE,
169 stdout=subprocess.PIPE,
226 p = common.Run(cmd, stdout=subprocess.PIPE)
266 stdout=subprocess.PIPE)
Dfind_shareduid_violation.py65 cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
Dtest_utils.py34 logging.basicConfig(stream=sys.stdout)
Dcheck_target_files_vintf.py143 proc = common.Run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
Dcommon.py1530 p1 = Run(cmd, stdout=subprocess.PIPE)
1532 p2 = Run(["lz4", "-l", "-12", "--favor-decSpeed"], stdin=p1.stdout,
1533 stdout=ramdisk_img.file.fileno())
1535 p2 = Run(["minigzip"], stdin=p1.stdout, stdout=ramdisk_img.file.fileno())
2150 stdout=devnull.fileno(),
2160 stdout=devnull.fileno(),
2197 ["aapt2", "dump", "badging", apk_name], stdout=subprocess.PIPE,
2975 p = Run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
3431 proc = Run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
3820 stdout=output_stream.fileno())
/build/soong/scripts/check_boot_jars/
Dcheck_boot_jars.py47 stdout=subprocess.PIPE, shell=True)
48 stdout, _ = p.communicate()
55 root = xml.etree.ElementTree.fromstring(stdout)
58 print >> sys.stderr, stdout
/build/blueprint/gotestrunner/
Dgotestrunner.go38 func handleStdout(stdout io.Reader) {
39 reader := bufio.NewReader(stdout)
77 stdout, err := cmd.StdoutPipe()
89 handleStdout(stdout)
/build/make/tools/
Dextract_kernel.py119 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
131 sp = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
209 const=to_bytes_io(sys.stdout))
216 const=to_bytes_io(sys.stdout))
223 const=to_bytes_io(sys.stdout))
230 const=to_bytes_io(sys.stdout))
Dcompare_builds.py337 proc = subprocess.Popen(args, env=env, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
647 sys.stdout.write("\n")
648 sys.stdout.write("%s:\n" % title)
650 sys.stdout.write(" %s\n" % fmt % item)
Dbuild-license-metadata.sh219 ofile=/dev/stdout
Devent_log_tags.py127 out = sys.stdout
/build/soong/cmd/run_with_timeout/
Drun_with_timeout_test.go79 stdout := &bytes.Buffer{}
81 …t.args.command, tt.args.args, tt.args.timeout, tt.args.onTimeoutCmd, tt.args.stdin, stdout, stderr)
86 if gotStdout := stdout.String(); gotStdout != tt.wantStdout {
Drun_with_timeout.go91 stdin io.Reader, stdout, stderr io.Writer) error { argument
96 concurrentStdout := &concurrentWriter{w: stdout}
/build/make/tools/product_config/src/com/android/build/config/
DKatiCommandImpl.java93 final StringBuilder stdout = new StringBuilder(); in run() local
94 final Thread stdoutThread = new Thread(new OutputReader(process.getInputStream(), stdout), in run()
111 return stdout.toString(); in run()
/build/soong/ui/build/
Dtest_build.go59 stdout, err := cmd.StdoutPipe()
84 scanner := bufio.NewScanner(stdout)
/build/make/tools/fs_get_stats/
Dfs_get_stats.c64 fprintf(stdout, "%d %d 0%o\n", uid, gid, perms); in main()
/build/soong/cmd/path_interposer/
Dmain.go80 func Main(stdout, stderr io.Writer, interposer string, args []string, opts mainOpts) (int, error) { argument
102 Stdout: stdout,
/build/soong/python/scripts/
Dstub_template_host.txt83 sys.stdout.flush()
/build/make/tools/warn/
Dhtml_writer.py692 dump_csv(csv.writer(sys.stdout, lineterminator='\n'), warn_patterns)
694 dump_html(flags, sys.stdout, warning_messages, warning_links,
/build/make/tools/atree/
Datree.cpp89 fflush(stdout); in debug_printf()

12