Home
last modified time | relevance | path

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

12

/third_party/python/Lib/distutils/tests/
Dtest_spawn.py9 from distutils.spawn import find_executable
60 rv = find_executable(program, path=tmp_dir)
65 rv = find_executable(program_noeext, path=tmp_dir)
70 rv = find_executable(program)
75 rv = find_executable(dont_exist_program , path=tmp_dir)
85 rv = find_executable(program)
90 rv = find_executable(program)
99 rv = find_executable(program)
104 rv = find_executable(program)
117 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,
92 @unittest.skipIf(find_executable('rpm') is None,
94 @unittest.skipIf(find_executable('rpmbuild') 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
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,
/third_party/python/Lib/distutils/
Dspawn.py48 executable = find_executable(cmd[0])
95 def find_executable(executable, path=None): function
Dcygwinccompiler.py59 from distutils.spawn import find_executable
378 if find_executable(executable) is None:
/third_party/protobuf/python/
Dsetup.py20 from distutils.spawn import find_executable
34 protoc = find_executable("protoc")
/third_party/python/Modules/_decimal/tests/
Dformathelper.py35 from distutils.spawn import find_executable
142 elif find_executable('locale'):
/third_party/node/
Dconfigure23 from distutils.spawn import find_executable as which
Dandroid-configure23 from distutils.spawn import find_executable as which
/third_party/protobuf/python/compatibility_tests/v2.5.0/
Dsetup.py16 from distutils.spawn import find_executable
/third_party/elfutils/libdwfl/
Dlink_map.c696 find_executable (Dwfl *dwfl, GElf_Addr at_phdr, GElf_Addr at_entry, in find_executable() function
994 ? find_executable (dwfl, phdr, entry, in dwfl_link_map_report()
1098 r_debug_vaddr = find_executable (dwfl, 0, 0, &elfclass, &elfdata, in dwfl_link_map_report()
/third_party/python/
Dsetup.py54 from distutils.spawn import find_executable
690 if not find_executable('dpkg-architecture'):
1083 elif find_executable('ldd'):
/third_party/skia/third_party/externals/microhttpd/
Dltmain.sh4285 char *find_executable (const char *wrapper);
4422 tmp_pathspec = find_executable (argv[0]);
4624 find_executable (const char *wrapper)
/third_party/libabigail/
Dltmain.sh4265 char *find_executable (const char *wrapper);
4402 tmp_pathspec = find_executable (argv[0]);
4604 find_executable (const char *wrapper)
/third_party/python/Lib/test/support/
D__init__.py1716 if spawn.find_executable(cmd[0]) is None:
/third_party/libffi/
Dltmain.sh5658 char *find_executable (const char *wrapper);
5800 tmp_pathspec = find_executable (argv[0]);
6002 find_executable (const char *wrapper)
/third_party/node/deps/cares/
Dltmain.sh5919 char *find_executable (const char *wrapper);
6061 tmp_pathspec = find_executable (argv[0]);
6263 find_executable (const char *wrapper)
/third_party/libevdev/build-aux/
Dltmain.sh5651 char *find_executable (const char *wrapper);
5793 tmp_pathspec = find_executable (argv[0]);
5995 find_executable (const char *wrapper)
/third_party/skia/third_party/externals/libpng/
Dltmain.sh5658 char *find_executable (const char *wrapper);
5800 tmp_pathspec = find_executable (argv[0]);
6002 find_executable (const char *wrapper)
/third_party/curl/
Dltmain.sh5907 char *find_executable (const char *wrapper);
6049 tmp_pathspec = find_executable (argv[0]);
6251 find_executable (const char *wrapper)
/third_party/python/Misc/NEWS.d/
D3.8.0a4.rst353 :func:`shutil.which` and :func:`distutils.spawn.find_executable` now use
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch800 from distutils.spawn import find_executable
1039 - if find_executable(executable) is None:
1181 - # get_versions calls distutils.spawn.find_executable on
/third_party/python/Doc/distutils/
Dapiref.rst1446 Also provides :func:`find_executable` to search the path for a given executable

12