Home
last modified time | relevance | path

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

12

/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_signatures106 stdout=subprocess.PIPE,
169 stdout=subprocess.PIPE,
226 p = common.Run(cmd, stdout=subprocess.PIPE)
266 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)
Dtest_utils.py32 logging.basicConfig(stream=sys.stdout)
Dcheck_target_files_vintf.py146 proc = common.Run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
Dcommon.py1228 p1 = Run(cmd, stdout=subprocess.PIPE)
1230 p2 = Run(["lz4", "-l", "-12" , "--favor-decSpeed"], stdin=p1.stdout,
1231 stdout=ramdisk_img.file.fileno())
1233 p2 = Run(["minigzip"], stdin=p1.stdout, stdout=ramdisk_img.file.fileno())
1766 stdout=devnull.fileno(),
1776 stdout=devnull.fileno(),
1813 ["aapt2", "dump", "badging", apk_name], stdout=subprocess.PIPE,
2591 p = Run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
3047 proc = Run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
Dmerge_target_files.py730 find_process = common.Run(find_command, stdout=subprocess.PIPE, verbose=False)
732 stdin=find_process.stdout,
Dsign_target_files_apks.py923 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
Dsign_target_files_apks923 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/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/core/tasks/check_boot_jars/
Dcheck_boot_jars.py47 stdout=subprocess.PIPE, shell=True)
48 stdout, _ = p.communicate()
51 items = stdout.split()
/build/make/tools/
Dextract_kernel.py111 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
123 sp = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
196 const=sys.stdout)
203 const=sys.stdout)
210 const=sys.stdout)
Devent_log_tags.py127 out = sys.stdout
Dcheck_elf_file.py200 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/build/soong/ui/build/
Dtest_build.go59 stdout, err := cmd.StdoutPipe()
74 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/make/core/tasks/
Dfind-shareduid-violation.py32 p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/build/soong/python/scripts/
Dstub_template_host.txt83 sys.stdout.flush()
/build/make/tools/warn/
Dhtml_writer.py670 dump_csv(csv.writer(sys.stdout, lineterminator='\n'), warn_patterns)
672 dump_html(flags, sys.stdout, warning_messages, warning_links,
/build/make/tools/atree/
Datree.cpp89 fflush(stdout); in debug_printf()
/build/soong/cmd/pom2mk/
Dpom2mk.go380 The makefile is written to stdout, to be put in the current directory (often as Android.mk)
/build/soong/cmd/pom2bp/
Dpom2bp.go608 The contents are written to stdout, to be put in the current directory (often as Android.bp)

12