/development/tools/ |
D | monkey | 15 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/ |
D | Logger.java | 26 if (stdout) { 36 if (stdout) { 45 public static boolean stdout = true; field in Logger
|
/development/python-packages/adb/ |
D | device.py | 41 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/ |
D | cmd_utils.py | 91 stdout, stderr = proc.communicate() 104 logging.log(log_level, ' stdout: %r', stdout) 112 stdout if read_stdout else None,
|
/development/testrunner/ |
D | run_command.py | 102 stdout=output_dest, 167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE, 177 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
D | create_test.py | 192 print >> sys.stdout, msg
|
/development/scripts/ |
D | add-accounts-sdk | 35 proc = subprocess.Popen(args, stdout=subprocess.PIPE) 36 out = proc.stdout.read()
|
D | add-accounts | 35 proc = subprocess.Popen(args, stdout=subprocess.PIPE) 36 out = proc.stdout.read()
|
D | symbol.py | 44 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()
|
D | disassemble_tombstone.py | 154 '-S', linked_file.name]), stdout=subprocess.PIPE) 160 for line in disassembler.stdout:
|
D | stack_core.py | 214 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:
|
D | usb-reset-by-serial.py | 93 mypipe = subprocess.Popen(args, stdout=subprocess.PIPE)
|
D | native_heapdump_viewer.py | 325 …p = subprocess.Popen(["addr2line", "-C", "-j", ".text", "-e", sofile, "-f"], stdout=subprocess.PIP…
|
/development/tools/repo_pull/ |
D | repo_pull.py | 61 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=(', ', ': '))
|
D | repo_review.py | 53 def _print_change_lists(change_lists, file=sys.stdout): 199 _print_change_lists(change_lists, file=sys.stdout)
|
D | gerrit.py | 261 json.dump(change_lists, sys.stdout, indent=4, separators=(', ', ': '))
|
/development/gsi/gsi_util/gsi_util/commands/ |
D | dump.py | 94 os = sys.stdout
|
/development/vndk/tools/sourcedr/blueprint/ |
D | list_vndk_module.py | 98 sys.stdout, module_dicts, root_dir, exclude, select)
|
/development/tools/logblame/ |
D | analyze_logs.py | 161 logcat = subprocess.Popen(cmd, stdout=subprocess.PIPE) 162 infile = logcat.stdout
|
/development/vndk/tools/ |
D | system_image_diff.py | 141 writer = csv.writer(sys.stdout, quoting = csv.QUOTE_NONNUMERIC,
|
/development/tools/axl/ |
D | axl.py | 240 log.Log.getInstance(sys.stdout)
|
/development/python-packages/gdbrunner/ |
D | __init__.py | 184 return device.shell_popen(gdbserver_cmd, stdout=gdbserver_output,
|
/development/vndk/tools/header-checker/utils/ |
D | utils.py | 299 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
/development/tools/privapp_permissions/ |
D | privapp_permissions.py | 431 def print_xml(results, apps_redefine_base, fd=sys.stdout):
|
/development/vndk/tools/definition-tool/ |
D | vndk_definition_tool.py | 159 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):
|