/build/soong/ui/terminal/ |
D | stdio.go | 43 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/ |
D | target_files_diff.py | 142 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
|
D | check_ota_package_signature.py | 41 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)
|
D | check_target_files_signatures | 106 stdout=subprocess.PIPE, 169 stdout=subprocess.PIPE, 226 p = common.Run(cmd, stdout=subprocess.PIPE) 266 stdout=subprocess.PIPE)
|
D | check_target_files_signatures.py | 106 stdout=subprocess.PIPE, 169 stdout=subprocess.PIPE, 226 p = common.Run(cmd, stdout=subprocess.PIPE) 266 stdout=subprocess.PIPE)
|
D | test_utils.py | 32 logging.basicConfig(stream=sys.stdout)
|
D | check_target_files_vintf.py | 146 proc = common.Run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
D | common.py | 1228 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)
|
D | merge_target_files.py | 730 find_process = common.Run(find_command, stdout=subprocess.PIPE, verbose=False) 732 stdin=find_process.stdout,
|
D | sign_target_files_apks.py | 923 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
D | sign_target_files_apks | 923 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
/build/blueprint/gotestrunner/ |
D | gotestrunner.go | 38 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/ |
D | check_boot_jars.py | 47 stdout=subprocess.PIPE, shell=True) 48 stdout, _ = p.communicate() 51 items = stdout.split()
|
/build/make/tools/ |
D | extract_kernel.py | 111 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)
|
D | event_log_tags.py | 127 out = sys.stdout
|
D | check_elf_file.py | 200 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
/build/soong/ui/build/ |
D | test_build.go | 59 stdout, err := cmd.StdoutPipe() 74 scanner := bufio.NewScanner(stdout)
|
/build/make/tools/fs_get_stats/ |
D | fs_get_stats.c | 64 fprintf(stdout, "%d %d 0%o\n", uid, gid, perms); in main()
|
/build/soong/cmd/path_interposer/ |
D | main.go | 80 func Main(stdout, stderr io.Writer, interposer string, args []string, opts mainOpts) (int, error) { argument 102 Stdout: stdout,
|
/build/make/core/tasks/ |
D | find-shareduid-violation.py | 32 p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
/build/soong/python/scripts/ |
D | stub_template_host.txt | 83 sys.stdout.flush()
|
/build/make/tools/warn/ |
D | html_writer.py | 670 dump_csv(csv.writer(sys.stdout, lineterminator='\n'), warn_patterns) 672 dump_html(flags, sys.stdout, warning_messages, warning_links,
|
/build/make/tools/atree/ |
D | atree.cpp | 89 fflush(stdout); in debug_printf()
|
/build/soong/cmd/pom2mk/ |
D | pom2mk.go | 380 The makefile is written to stdout, to be put in the current directory (often as Android.mk)
|
/build/soong/cmd/pom2bp/ |
D | pom2bp.go | 608 The contents are written to stdout, to be put in the current directory (often as Android.bp)
|