Home
last modified time | relevance | path

Searched refs:find_executable (Results 1 – 25 of 102) sorted by relevance

12345

/aosp_15_r20/external/python/cpython3/Lib/distutils/tests/
Dtest_spawn.py9 from distutils.spawn import find_executable
62 rv = find_executable(program, path=tmp_dir)
67 rv = find_executable(program_noeext, path=tmp_dir)
72 rv = find_executable(program)
77 rv = find_executable(dont_exist_program , path=tmp_dir)
87 rv = find_executable(program)
92 rv = find_executable(program)
101 rv = find_executable(program)
106 rv = find_executable(program)
119 rv = find_executable(program)
[all …]
Dtest_bdist_rpm.py11 from distutils.spawn import find_executable
48 @unittest.skipIf(find_executable('rpm') is None,
50 @unittest.skipIf(find_executable('rpmbuild') is None,
95 @unittest.skipIf(find_executable('rpm') is None,
97 @unittest.skipIf(find_executable('rpmbuild') is None,
Dtest_archive_util.py14 from distutils.spawn import find_executable, spawn
31 ZIP_SUPPORT = find_executable('zip')
147 @unittest.skipUnless(find_executable('tar') and find_executable('gzip')
204 @unittest.skipUnless(find_executable('compress'),
Dtest_sdist.py29 from distutils.spawn import find_executable
137 @unittest.skipIf(find_executable('tar') is None,
139 @unittest.skipIf(find_executable('gzip') is None,
443 @unittest.skipIf(find_executable('tar') is None,
445 @unittest.skipIf(find_executable('gzip') is None,
Dtest_cygwinccompiler.py38 self.old_find_executable = cygwinccompiler.find_executable
39 cygwinccompiler.find_executable = self._find_executable
49 cygwinccompiler.find_executable = self.old_find_executable
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/distutils/tests/
H A Dtest_spawn.py9 from distutils.spawn import find_executable
62 rv = find_executable(program, path=tmp_dir)
67 rv = find_executable(program_noeext, path=tmp_dir)
72 rv = find_executable(program)
77 rv = find_executable(dont_exist_program , path=tmp_dir)
87 rv = find_executable(program)
92 rv = find_executable(program)
101 rv = find_executable(program)
106 rv = find_executable(program)
119 rv = find_executable(program)
[all …]
H A Dtest_bdist_rpm.py11 from distutils.spawn import find_executable
48 @unittest.skipIf(find_executable('rpm') is None,
50 @unittest.skipIf(find_executable('rpmbuild') is None,
95 @unittest.skipIf(find_executable('rpm') is None,
97 @unittest.skipIf(find_executable('rpmbuild') is None,
H A Dtest_archive_util.py14 from distutils.spawn import find_executable, spawn
31 ZIP_SUPPORT = find_executable('zip')
147 @unittest.skipUnless(find_executable('tar') and find_executable('gzip')
204 @unittest.skipUnless(find_executable('compress'),
H A Dtest_sdist.py29 from distutils.spawn import find_executable
137 @unittest.skipIf(find_executable('tar') is None,
139 @unittest.skipIf(find_executable('gzip') is None,
443 @unittest.skipIf(find_executable('tar') is None,
445 @unittest.skipIf(find_executable('gzip') is None,
H A Dtest_cygwinccompiler.py38 self.old_find_executable = cygwinccompiler.find_executable
39 cygwinccompiler.find_executable = self._find_executable
49 cygwinccompiler.find_executable = self.old_find_executable
/aosp_15_r20/external/python/setuptools/setuptools/_distutils/tests/
Dtest_spawn.py11 from distutils.spawn import find_executable
62 rv = find_executable(program, path=tmp_dir)
67 rv = find_executable(program_noeext, path=tmp_dir)
72 rv = find_executable(program)
77 rv = find_executable(dont_exist_program , path=tmp_dir)
87 rv = find_executable(program)
92 rv = find_executable(program)
101 rv = find_executable(program)
106 rv = find_executable(program)
119 rv = find_executable(program)
[all …]
Dtest_bdist_rpm.py11 from distutils.spawn import find_executable
51 @unittest.skipIf(find_executable('rpm') is None,
53 @unittest.skipIf(find_executable('rpmbuild') is None,
95 @unittest.skipIf(find_executable('rpm') is None,
97 @unittest.skipIf(find_executable('rpmbuild') is None,
Dtest_sdist.py24 from distutils.spawn import find_executable
132 @unittest.skipIf(find_executable('tar') is None,
134 @unittest.skipIf(find_executable('gzip') is None,
439 @unittest.skipIf(find_executable('tar') is None,
441 @unittest.skipIf(find_executable('gzip') is None,
Dtest_archive_util.py14 from distutils.spawn import find_executable, spawn
27 ZIP_SUPPORT = find_executable('zip')
143 @unittest.skipUnless(find_executable('tar') and find_executable('gzip')
200 @unittest.skipUnless(find_executable('compress'),
/aosp_15_r20/external/python/cpython2/Lib/distutils/tests/
Dtest_spawn.py11 from distutils.spawn import spawn, find_executable
73 rv = find_executable(program, path=tmp_dir)
78 rv = find_executable(program_noeext, path=tmp_dir)
83 rv = find_executable(program)
88 rv = find_executable(dont_exist_program , path=tmp_dir)
97 rv = find_executable(program)
Dtest_bdist_rpm.py19 from distutils.spawn import find_executable
53 @unittest.skipIf(find_executable('rpm') is None,
55 @unittest.skipIf(find_executable('rpmbuild') is None,
97 @unittest.skipIf(find_executable('rpm') is None,
99 @unittest.skipIf(find_executable('rpmbuild') is None,
Dtest_archive_util.py15 from distutils.spawn import find_executable, spawn
30 ZIP_SUPPORT = find_executable('zip')
120 @unittest.skipUnless(find_executable('tar') and find_executable('gzip'),
173 @unittest.skipUnless(find_executable('compress'),
/aosp_15_r20/tools/acloud/
H A Dsetup.py21 from distutils.spawn import find_executable
23 from shutil import which as find_executable unknown
42 PROTOC = find_executable("protoc")
/aosp_15_r20/external/avb/tools/transparency/
H A Dpixel_factory_image_verify.py72 self.fw_unpacker_path = distutils.spawn.find_executable('fbpacktool')
73 self.wget_path = distutils.spawn.find_executable('wget')
74 self.curl_path = distutils.spawn.find_executable('curl')
90 if not distutils.spawn.find_executable(cmd):
/aosp_15_r20/external/python/cpython2/Lib/distutils/
Dcygwinccompiler.py415 from distutils.spawn import find_executable
418 gcc_exe = find_executable('gcc')
430 ld_exe = find_executable('ld')
442 dllwrap_exe = find_executable('dllwrap')
Dspawn.py68 executable = find_executable(executable) or executable
91 executable = find_executable(executable) or executable
204 def find_executable(executable, path=None): function
/aosp_15_r20/external/perfetto/tools/
H A Drun_test_like_ci30 from shutil import which as find_executable unknown
32 from distutils.spawn import find_executable
80 default='podman' if find_executable('podman') else 'docker')
/aosp_15_r20/external/llvm/utils/
H A Dllvm-compilers-check83 def find_executable(executable, path=None): function
128 parser.add_option("--cc", default=find_executable("cc"),
130 parser.add_option("--cxx", default=find_executable("c++"),
174 options.cc = find_executable(options.cc)
175 options.cxx = find_executable(options.cxx)
565 program = find_executable("make")
/aosp_15_r20/external/python/cpython2/PC/VS9.0/
Dbuild_ssl.py34 from distutils.spawn import find_executable
160 if not find_executable('nmake.exe'):
174 if not find_executable('nasm.exe'):
/aosp_15_r20/external/cronet/third_party/boringssl/src/util/bot/go/
H A Denv.py38 def find_executable(name, goroot): function
60 exe = find_executable(exe, goroot)

12345