Searched refs:subprocess (Results 1 - 25 of 136) sorted by relevance

123456

/netbsd-current/external/apache2/llvm/dist/llvm/utils/gn/build/
H A Drun_tablegen.py4 import subprocess namespace
8 sys.exit(subprocess.call(['./' + sys.argv[1]] + sys.argv[2:]))
/netbsd-current/external/mpl/bind/dist/bin/tests/system/doth/
H A Dconftest.py15 import subprocess namespace
28 output = subprocess.run(
30 stdout=subprocess.PIPE,
31 stderr=subprocess.STDOUT,
H A Dtests_sslyze.py16 import subprocess namespace
49 subprocess.run(
52 stderr=subprocess.STDOUT,
H A Dtests_gnutls.py16 import subprocess namespace
46 with open("gnutls-cli.err", "wb") as gnutls_cli_stderr, subprocess.Popen(
48 stdin=subprocess.PIPE,
49 stdout=subprocess.PIPE,
89 except subprocess.TimeoutExpired:
/netbsd-current/external/gpl3/gcc/dist/contrib/
H A Dgit-backport.py24 import subprocess namespace
34 subprocess.run('git cherry-pick -x %s' % args.revision, shell=True)
35 subprocess.run(fixup_script, shell=True)
H A Dgit-fix-changelog.py27 import subprocess namespace
57 r = subprocess.run(f'{verify_script} HEAD', shell=True, encoding='utf8',
58 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
62 commit_message = subprocess.check_output(cmd, shell=True,
87 subprocess.check_output(f'git commit --amend -F {w.name}',
H A Dgit-commit-mklog.py28 import subprocess namespace
59 subprocess.run(f'git commit {commit_args}', shell=True, env=myenv)
/netbsd-current/external/mpl/bind/dist/bin/tests/system/dnstap/
H A Dydump.py20 import subprocess namespace
27 with subprocess.Popen(ARGS, stdout=subprocess.PIPE) as f:
H A Dtests_dnstap.py16 import subprocess namespace
34 subprocess.check_output(cmdline, stderr=subprocess.STDOUT, timeout=10)
54 output = subprocess.check_output(
/netbsd-current/external/gpl3/gcc.old/dist/contrib/
H A Dgit-backport.py24 import subprocess namespace
34 subprocess.run('git cherry-pick -x %s' % args.revision, shell=True)
35 subprocess.run(fixup_script, shell=True)
H A Dgit-fix-changelog.py27 import subprocess namespace
57 r = subprocess.run(f'{verify_script} HEAD', shell=True, encoding='utf8',
58 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
62 commit_message = subprocess.check_output(cmd, shell=True,
87 subprocess.check_output(f'git commit --amend -F {w.name}',
/netbsd-current/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/functional/cases/
H A D__init__.py8 import subprocess namespace
31 kwargs.update({'stdout': subprocess.PIPE, 'stderr': subprocess.STDOUT})
32 return subprocess.call(cmd, *args, **kwargs)
36 kwargs.update({'stdout': subprocess.PIPE, 'stderr': subprocess.STDOUT})
37 return subprocess.check_call(cmd, *args, **kwargs)
41 child = subprocess.Popen(analyzer_cmd + ['-v'] + build_cmd,
43 stdout=subprocess.PIPE,
44 stderr=subprocess
[all...]
H A Dtest_exec_anatomy.py10 import subprocess namespace
16 return subprocess.check_call(cmd,
18 stdout=subprocess.PIPE,
19 stderr=subprocess.STDOUT)
/netbsd-current/external/mpl/bind/dist/bin/tests/system/addzone/
H A Dtests_rndc_deadlock.py14 import subprocess namespace
28 subprocess.check_output(cmdline, stderr=subprocess.STDOUT, timeout=10)
50 except subprocess.SubprocessError:
61 except subprocess.SubprocessError:
/netbsd-current/external/mpl/bind/dist/bin/tests/system/
H A Dpytest_custom_markers.py15 import subprocess namespace
28 subprocess.run([feature_test_bin, feature], check=True)
29 except subprocess.CalledProcessError as exc:
/netbsd-current/external/apache2/llvm/dist/clang/tools/clang-rename/
H A Dclang-rename.py27 import subprocess namespace
53 p = subprocess.Popen(command,
54 stdout=subprocess.PIPE,
55 stderr=subprocess.PIPE)
/netbsd-current/external/apache2/llvm/dist/llvm/utils/
H A Dindirect_calls.py18 import subprocess namespace
27 p = subprocess.Popen(args=args, stdin=None, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
H A Dextract_vplan.py13 import subprocess namespace
35 p = subprocess.Popen([dot, '-Tpng', '-o', filename],
37 stdin=subprocess.PIPE,
38 stdout=subprocess.PIPE,
39 stderr=subprocess.PIPE)
H A Dbisect19 import subprocess namespace
42 result = subprocess.call(cmd)
/netbsd-current/external/apache2/llvm/dist/clang/tools/clang-format/
H A Dclang-format-sublime.py18 import subprocess namespace
47 p = subprocess.Popen(command, stdout=subprocess.PIPE,
48 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
H A Dclang-format.py45 import subprocess namespace
107 startupinfo = subprocess.STARTUPINFO()
108 startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
109 startupinfo.wShowWindow = subprocess.SW_HIDE
121 p = subprocess.Popen(command,
122 stdout=subprocess.PIPE, stderr=subprocess.PIPE,
123 stdin=subprocess.PIPE, startupinfo=startupinfo)
/netbsd-current/external/apache2/llvm/dist/llvm/utils/gn/
H A Dgn.py10 import subprocess namespace
41 if subprocess.call('gn --version', stdout=open(os.devnull, 'w'),
42 stderr=subprocess.STDOUT,
64 sys.exit(subprocess.call(cmd))
/netbsd-current/external/apache2/llvm/dist/clang/utils/check_cfc/
H A Dobj_diff.py9 import subprocess namespace
21 p = subprocess.Popen([disassembler, '-d', objfile],
22 stdout=subprocess.PIPE,
23 stderr=subprocess.PIPE)
32 p = subprocess.Popen([disassembler, '-WliaprmfsoRt', objfile], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
H A Dgen_dynamic_list.py20 import subprocess namespace
67 nm_proc = subprocess.Popen([nm, library], stdout=subprocess.PIPE,
68 stderr=subprocess.PIPE)
71 raise subprocess.CalledProcessError(nm_proc.returncode, nm)
/netbsd-current/external/mit/libcbor/dist/doc/source/
H A Dconf.py39 import subprocess, os namespace
45 print subprocess.check_output('cd ../..; mkdir doc/build; doxygen', shell=True)

Completed in 177 milliseconds

123456