Searched refs:PIPE (Results 1 – 14 of 14) sorted by relevance
/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/tools/winscope/src/adb/ |
D | winscope_proxy.py | 738 stderr=subprocess.PIPE) 879 self.process = subprocess.Popen(shell, stdout=subprocess.PIPE, 880 … stderr=subprocess.PIPE, stdin=subprocess.PIPE, start_new_session=True) 1038 process = subprocess.Popen(shell, stdout=subprocess.PIPE, stderr=subprocess.PIPE, 1039 stdin=subprocess.PIPE, start_new_session=True) 1151 process = subprocess.Popen(shell, stdout=subprocess.PIPE, stderr=subprocess.PIPE, 1152 stdin=subprocess.PIPE, start_new_session=True)
|
/development/tools/repo_pull/ |
D | gerrit.py | 75 from subprocess import PIPE, run 77 from subprocess import CalledProcessError, PIPE, Popen 97 kwargs['stdin'] = PIPE 167 proc = run(cmd, stdout=PIPE, input=req.data, check=True) 574 raw_manifest_xml = run(manifest_cmd, stdout=PIPE, check=True).stdout
|
D | repo_pull.py | 38 from subprocess import PIPE 161 raw_manifest_xml = run(manifest_cmd, stdout=PIPE, check=True).stdout 328 proc = run(cmd, cwd=os.path.join(repo_top, cwd), stderr=PIPE)
|
/development/scripts/ |
D | symbol.py | 53 … stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True, shell=True).stdout 108 …return subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, universal_newlines=Tru… 385 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True).stdout
|
D | acov-llvm.py | 81 cmd, *args, **kwargs, check=True, stdout=subprocess.PIPE).stdout
|
D | stack_core.py | 268 cmd = subprocess.Popen(["zipinfo", "-v", apk_full_path], stdout=subprocess.PIPE,
|
D | cargo2rulesmk.py | 260 stdout=subprocess.PIPE,
|
/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/vndk/tools/header-checker/utils/ |
D | utils.py | 348 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 349 stderr=subprocess.PIPE, cwd=AOSP_DIR, env=env)
|
/development/tools/repo_diff/ |
D | repo_diff_android.py | 72 subprocess.check_output("repo", stderr=subprocess.PIPE,
|
/development/python-packages/adb/adb/ |
D | __init__.py | 315 cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, encoding='utf-8')
|
/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})
|