Home
last modified time | relevance | path

Searched refs:stdout (Results 1 – 25 of 34) 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():
Drewriter.py273 def rewrite(self, out_file=sys.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/
Ddevice.py41 def __init__(self, cmd, stdout, stderr, exit_code): argument
45 self.stdout = stdout
52 subprocess.check_call([adb_path, 'start-server'], stdout=devnull,
118 subprocess.check_call([adb_path, 'start-server'], stdout=devnull,
346 exit_code, stdout, stderr = self.shell_nocheck(cmd)
348 raise ShellError(cmd, stdout, stderr, exit_code)
349 return stdout, stderr
364 cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
365 stdout, stderr = p.communicate()
366 stdout = stdout.decode('utf-8')
[all …]
/development/gsi/gsi_util/gsi_util/utils/
Dcmd_utils.py91 stdout, stderr = proc.communicate()
104 logging.log(log_level, ' stdout: %r', stdout)
112 stdout if read_stdout else None,
/development/testrunner/
Drun_command.py102 stdout=output_dest,
167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE,
177 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
Dcreate_test.py192 print >> sys.stdout, msg
/development/scripts/
Dadd-accounts35 proc = subprocess.Popen(args, stdout=subprocess.PIPE)
36 out = proc.stdout.read()
Dadd-accounts-sdk35 proc = subprocess.Popen(args, stdout=subprocess.PIPE)
36 out = proc.stdout.read()
Dsymbol.py44 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True).stdout
98 return subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
102 pipe.stdout.close()
312 symbol = child.stdout.readline().strip()
315 location = child.stdout.readline().strip()
417 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE).stdout
464 demangled_symbol = process.stdout.readline().strip()
Ddisassemble_tombstone.py154 '-S', linked_file.name]), stdout=subprocess.PIPE)
160 for line in disassembler.stdout:
Dstack_core.py214 if subprocess.call(["unzip", "-p", apk, shared_lib_name], stdout=tmp_fd) == 0:
269 cmd = subprocess.Popen(["zipinfo", "-v", apk_full_path], stdout=subprocess.PIPE)
271 for line in cmd.stdout:
278 for line in cmd.stdout:
Dusb-reset-by-serial.py93 mypipe = subprocess.Popen(args, stdout=subprocess.PIPE)
/development/tools/repo_pull/
Drepo_pull.py62 def __init__(self, args, returncode, stdout, stderr): argument
65 self.stdout = stdout
82 stdout, stderr = proc.communicate(stdin)
90 raise CalledProcessError(returncode, args, stdout)
91 return CompletedProcess(args, returncode, stdout, stderr)
250 json.dump(change_lists, sys.stdout, indent=4, separators=(', ', ': '))
Drepo_review.py53 def _print_change_lists(change_lists, file=sys.stdout):
199 _print_change_lists(change_lists, file=sys.stdout)
Dgerrit.py261 json.dump(change_lists, sys.stdout, indent=4, separators=(', ', ': '))
/development/vndk/tools/sourcedr/blueprint/
Dlist_vndk_module.py98 sys.stdout, module_dicts, root_dir, exclude, select)
/development/gsi/gsi_util/gsi_util/commands/
Ddump.py94 os = sys.stdout
/development/tools/logblame/
Danalyze_logs.py161 logcat = subprocess.Popen(cmd, stdout=subprocess.PIPE)
162 infile = logcat.stdout
/development/vndk/tools/
Dsystem_image_diff.py141 writer = csv.writer(sys.stdout, quoting = csv.QUOTE_NONNUMERIC,
/development/tools/winscope/adb_proxy/
Dwinscope_proxy.py253 … subprocess.Popen(['adb'] + (['-s', device] if device else []) + params.split(' '), stdout=outfile,
341 self.process = subprocess.Popen(shell, stdout=subprocess.PIPE,
498 process = subprocess.Popen(shell, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
/development/tools/axl/
Daxl.py240 log.Log.getInstance(sys.stdout)
/development/vndk/tools/image-diff-tool/
Ddiff.py28 return subprocess.call(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) == 0
/development/python-packages/gdbrunner/
D__init__.py196 return device.shell_popen(gdbserver_cmd, stdout=gdbserver_output,

12