Home
last modified time | relevance | path

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

/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.py75 stdout, stderr = proc.communicate()
83 logging.log(log_level, ' stdout: %r', stdout)
91 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.py40 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True).stdout
92 return subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
96 pipe.stdout.close()
305 symbol = child.stdout.readline().strip()
308 location = child.stdout.readline().strip()
407 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE).stdout
454 demangled_symbol = process.stdout.readline().strip()
Ddisassemble_tombstone.py147 '-S', linked_file.name]), stdout=subprocess.PIPE)
153 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.py186 …p = subprocess.Popen(["addr2line", "-C", "-j", ".text", "-e", sofile, "-f"], stdout=subprocess.PIP…
/development/vndk/tools/header-checker/tests/
Dgen_expected_output.py7 sys.stdout.write(run_header_abi_dumper(sys.argv[1], True, sys.argv[2:]))
/development/gsi/gsi_util/gsi_util/commands/
Ddump.py94 os = sys.stdout
/development/vndk/tools/header-checker/utils/
Dutils.py136 subprocess.check_call(make_cmd, cwd=AOSP_DIR, stdout=subprocess.DEVNULL,
203 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
/development/tools/logblame/
Danalyze_logs.py161 logcat = subprocess.Popen(cmd, stdout=subprocess.PIPE)
162 infile = logcat.stdout
/development/vndk/tools/
Dsystem_image_diff.py127 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/tools/privapp_permissions/
Dprivapp_permissions.py431 def print_xml(results, apps_redefine_base, fd=sys.stdout):
/development/vndk/tools/sourcedr/sourcedr/
Dcodesearch.py206 cwd=self._root_dir, stdout=subprocess.DEVNULL,
/development/vndk/tools/sourcedr/sourcedr/blueprint/
Dblueprint.py867 sys.stdout.flush()
/development/vndk/tools/definition-tool/
Dvndk_definition_tool.py470 file = file if file is not None else sys.stdout
2921 def _print_tags(self, vndk_lib, full, file=sys.stdout):
2936 def _print_make(self, vndk_lib, file=sys.stdout):