Home
last modified time | relevance | path

Searched refs:stdout (Results 1 – 25 of 27) 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/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-accounts-sdk35 proc = subprocess.Popen(args, stdout=subprocess.PIPE)
36 out = proc.stdout.read()
Dadd-accounts35 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)
Dnative_heapdump_viewer.py325 …p = subprocess.Popen(["addr2line", "-C", "-j", ".text", "-e", sofile, "-f"], stdout=subprocess.PIP…
/development/tools/repo_pull/
Drepo_pull.py61 def __init__(self, args, returncode, stdout, stderr): argument
64 self.stdout = stdout
81 stdout, stderr = proc.communicate(stdin)
89 raise CalledProcessError(returncode, args, stdout)
90 return CompletedProcess(args, returncode, stdout, stderr)
239 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/gsi/gsi_util/gsi_util/commands/
Ddump.py94 os = sys.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
/development/vndk/tools/
Dsystem_image_diff.py141 writer = csv.writer(sys.stdout, quoting = csv.QUOTE_NONNUMERIC,
/development/tools/axl/
Daxl.py240 log.Log.getInstance(sys.stdout)
/development/python-packages/gdbrunner/
D__init__.py184 return device.shell_popen(gdbserver_cmd, stdout=gdbserver_output,
/development/vndk/tools/header-checker/utils/
Dutils.py299 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
/development/tools/privapp_permissions/
Dprivapp_permissions.py431 def print_xml(results, apps_redefine_base, fd=sys.stdout):
/development/vndk/tools/definition-tool/
Dvndk_definition_tool.py159 out_file = kwargs.get('file', sys.stdout)
592 file = file if file is not None else sys.stdout
1539 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
1540 stdout, stderr = proc.communicate()
3443 def _print_tags(self, vndk_lib, full, file=sys.stdout):
3459 def _print_make(self, vndk_lib, file=sys.stdout):

12