/development/gsi/gsi_util/gsi_util/utils/ |
D | cmd_utils.py | 26 PIPE = subprocess.PIPE variable 81 assert kwargs.get('stdout') in [None, PIPE] 82 kwargs['stdout'] = PIPE 84 assert kwargs.get('stderr') in [None, PIPE] 85 kwargs['stderr'] = PIPE
|
/development/vndk/tools/elfcheck/elfcheck/ |
D | readobj.py | 35 proc = subprocess.Popen(['readelf', '-h', path], stdout=subprocess.PIPE, 36 stderr=subprocess.PIPE) 46 proc = subprocess.Popen(['readelf', '-d', path], stdout=subprocess.PIPE, 47 stderr=subprocess.PIPE)
|
/development/testrunner/ |
D | run_command.py | 90 output_dest = subprocess.PIPE 95 stdin_dest = subprocess.PIPE 167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE, 177 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
/development/tools/repo_pull/ |
D | gerrit.py | 47 from subprocess import PIPE, run 49 from subprocess import CalledProcessError, PIPE, Popen 69 kwargs['stdin'] = PIPE 336 raw_manifest_xml = run(manifest_cmd, stdout=PIPE, check=True).stdout
|
D | repo_pull.py | 37 from subprocess import PIPE 137 raw_manifest_xml = run(manifest_cmd, stdout=PIPE, check=True).stdout 302 proc = run(cmd, cwd=os.path.join(repo_top, cwd), stderr=PIPE)
|
/development/tools/winscope/adb_proxy/ |
D | winscope_proxy.py | 428 stderr=subprocess.PIPE) 537 self.process = subprocess.Popen(shell, stdout=subprocess.PIPE, 538 … stderr=subprocess.PIPE, stdin=subprocess.PIPE, start_new_session=True) 671 process = subprocess.Popen(shell, stdout=subprocess.PIPE, stderr=subprocess.PIPE, 672 stdin=subprocess.PIPE, start_new_session=True) 773 process = subprocess.Popen(shell, stdout=subprocess.PIPE, stderr=subprocess.PIPE, 774 stdin=subprocess.PIPE, start_new_session=True)
|
/development/scripts/ |
D | add-accounts-sdk | 35 proc = subprocess.Popen(args, stdout=subprocess.PIPE)
|
D | add-accounts | 35 proc = subprocess.Popen(args, stdout=subprocess.PIPE)
|
D | symbol.py | 39 … stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True, shell=True).stdout 94 …return subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, universal_newlines=Tru… 393 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True).stdout
|
D | usb-reset-by-serial.py | 93 mypipe = subprocess.Popen(args, stdout=subprocess.PIPE)
|
D | disassemble_tombstone.py | 154 '-S', linked_file.name]), stdout=subprocess.PIPE)
|
D | acov-llvm.py | 84 cmd, *args, **kwargs, check=True, stdout=subprocess.PIPE).stdout
|
D | native_heapdump_viewer.py | 325 …ddr2line", "-C", "-j", ".text", "-e", sofile, "-f"], stdout=subprocess.PIPE, stdin=subprocess.PIPE)
|
D | stack_core.py | 264 cmd = subprocess.Popen(["zipinfo", "-v", apk_full_path], stdout=subprocess.PIPE)
|
/development/vndk/tools/header-checker/utils/ |
D | utils.py | 321 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 322 stderr=subprocess.PIPE, cwd=AOSP_DIR, env=env)
|
/development/vndk/tools/sourcedr/ninja/ |
D | ninja.py | 239 PIPE = 7 variable in TK 343 (TK.PIPE, r'\|'), 689 explicit_outs = self._parse_path_list({TK.PIPE, TK.COLON}) 693 if token.kind == TK.PIPE: 712 {TK.PIPE, TK.PIPE2, TK.NEWLINE, TK.EOF}) 716 if token.kind == TK.PIPE:
|
/development/tools/repo_diff/ |
D | repo_diff_android.py | 72 subprocess.check_output("repo", stderr=subprocess.PIPE,
|
/development/python-packages/adb/ |
D | device.py | 364 cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
/development/tools/logblame/ |
D | analyze_logs.py | 161 logcat = subprocess.Popen(cmd, stdout=subprocess.PIPE)
|
/development/vndk/tools/sourcedr/ninja/tests/ |
D | test_ninja.py | 342 self.assertEqual(ninja.TK.PIPE, tok.kind) 360 lexer.lex_match({ninja.TK.PIPE})
|