Home
last modified time | relevance | path

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

12

/development/tools/
Dmonkey15 if sys.stdout.isatty():
36 sys.stdout.write("\n")
37 sys.stdout.write(BOLD)
38 sys.stdout.write(UNDERLINE)
39 sys.stdout.write(s)
40 sys.stdout.write(ENDCOLOR)
41 sys.stdout.write("\n")
47 sys.stdout.write(BOLD)
51 sys.stdout.write("%s=\"%s\" " % (k, v.replace("\"", "\\\"")))
53 sys.stdout.write("%s=%s " % (k, v))
[all …]
/development/vndk/tools/elfcheck/elfcheck/
Dreadobj.py35 proc = subprocess.Popen(['readelf', '-h', path], stdout=subprocess.PIPE,
37 stdout = proc.communicate()[0]
39 for line in stdout.decode('utf-8').splitlines():
46 proc = subprocess.Popen(['readelf', '-d', path], stdout=subprocess.PIPE,
48 stdout = proc.communicate()[0]
51 for line in stdout.decode('utf-8').splitlines():
/development/tools/otagui/src/views/
DJobDetails.vue28 ref="stdout"
29 class="stdout"
31 {{ job.stdout }}
62 const stdout = ref()
65 return { stderr, stdout, stderrBottom, stdoutBottom }
102 this.stdout.scrollTo({
123 .stdout {
/development/cmds/monkey/src/com/android/commands/monkey/
DLogger.java26 if (stdout) {
36 if (stdout) {
45 public static boolean stdout = true; field in Logger
/development/python-packages/adb/adb/
D__init__.py45 self, cmd: list[str], stdout: str, stderr: str, exit_code: int
50 self.stdout = stdout
57 subprocess.check_call([adb_path, 'start-server'], stdout=devnull,
129 subprocess.check_call([adb_path, 'start-server'], stdout=devnull,
297 exit_code, stdout, stderr = self.shell_nocheck(cmd)
299 raise ShellError(cmd, stdout, stderr, exit_code)
300 return stdout, stderr
315 cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, encoding='utf-8')
316 stdout, stderr = p.communicate()
320 exit_code, stdout = self._parse_shell_output(stdout)
[all …]
/development/tools/repo_pull/
Dgerrit.py83 def __init__(self, args, returncode, stdout, stderr): argument
86 self.stdout = stdout
103 stdout, stderr = proc.communicate(stdin)
111 raise CalledProcessError(returncode, args, stdout)
112 return CompletedProcess(args, returncode, stdout, stderr)
167 proc = run(cmd, stdout=PIPE, input=req.data, check=True)
170 outfile = BytesIO(proc.stdout)
574 raw_manifest_xml = run(manifest_cmd, stdout=PIPE, check=True).stdout
636 json.dump(change_lists, sys.stdout, indent=4, separators=(', ', ': '))
Drepo_pull.py161 raw_manifest_xml = run(manifest_cmd, stdout=PIPE, check=True).stdout
229 json.dump(change_lists, sys.stdout, indent=4, separators=(', ', ': '))
Drepo_review.py55 def _print_change_lists(change_lists, file=sys.stdout):
223 _print_change_lists(change_lists, file=sys.stdout)
/development/tools/otagui/
Dota_interface.py25 stdout: str = '' variable in JobInfo
82 with open(self.stdout, 'r') as fout:
237 command, stderr=ferr, stdout=fout, shell=False, env=env, cwd=self.otatools_dir)
290 stdout = os.path.join(self.logs_dir, 'stdout.' + str(id))
302 stdout=stdout,
305 self.ota_run(command, id, job_info.stdout, job_info.stderr)
Dtest_ota_interface.py19 output = '', stdout = '', stderr = ''): argument
31 stdout=stdout
49 self.assertEqual(job_info1.stdout, 'output/stdout.'+self.test_id,
62 stdout='output/stdout'
67 self.assertEqual(job_info3.stdout, 'output/stdout',
D.gitignore7 stdout*
/development/tools/winscope/protos/
Dbuild.js152 exec(command, (err, stdout, stderr) => {
157 `\n\nstdout: ${stdout}` +
/development/scripts/
Dsymbol.py53 … stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True, shell=True).stdout
108 …return subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, universal_newlines=Tru…
112 pipe.stdout.close()
304 json_result = json.loads(child.stdout.readline().strip())
385 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True).stdout
452 demangled_symbol = process.stdout.readline().strip()
Dacov-llvm.py81 cmd, *args, **kwargs, check=True, stdout=subprocess.PIPE).stdout
Dstack_core.py213 if subprocess.call(["unzip", "-p", apk, shared_lib_name], stdout=tmp_fd) == 0:
268 cmd = subprocess.Popen(["zipinfo", "-v", apk_full_path], stdout=subprocess.PIPE,
271 for line in cmd.stdout:
278 for line in cmd.stdout:
319 stdout = subprocess.check_output([symbol.ToolPath("llvm-readelf"), "-h", "-n", lib], text=True)
320 match = self.readelf_output.search(stdout)
/development/tools/ota_analysis/
D.gitignore8 stdout*
/development/tools/external_crates/crate_health/src/
Dreports.rs117 from_utf8(&o.stdout).unwrap_or("Error"), in health_table()
127 .map_or("Error", |o| from_utf8(&o.stdout).unwrap_or("Error")), in health_table()
226 from_utf8(&o.stdout).unwrap_or("Error"), in migration_eligible_table()
237 .map_or("Error", |o| from_utf8(&o.stdout).unwrap_or("Error")) in migration_eligible_table()
Dmain.rs187 .stdout in main()
228 .stdout in main()
Dcrate_type.rs181 println!("{}", from_utf8(&output.stdout)?); in print()
186 println!("{}", from_utf8(&output.stdout)?); in print()
245 from_utf8(&output.stdout)?, in apply_patches()
Dlib.rs108 from_utf8(&output.stdout)?, in copy_dir()
Dpseudo_crate.rs116 from_utf8(&output.stdout)?, in vendor()
/development/treble/
Dread_build_trace_gz.py64 sys.stdout.write(out_str)
/development/tools/ndk/ndkabidump/
Dsoong.py83 return result.stdout
/development/vndk/tools/sourcedr/blueprint/
Dlist_vndk_module.py98 sys.stdout, module_dicts, root_dir, exclude, select)
/development/tools/logblame/
Danalyze_logs.py161 logcat = subprocess.Popen(cmd, stdout=subprocess.PIPE)
162 infile = logcat.stdout

12