Home
last modified time | relevance | path

Searched refs:_imp (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython3/Lib/importlib/
D_bootstrap.py172 _imp.acquire_lock()
186 _imp.acquire_lock()
194 _imp.release_lock()
198 _imp.release_lock()
253 if not _imp.is_frozen(fullname):
740 if _imp.is_builtin(fullname):
763 return _call_with_frames_removed(_imp.create_builtin, spec)
768 _call_with_frames_removed(_imp.exec_builtin, module)
813 if _imp.is_frozen(fullname):
825 return cls if _imp.is_frozen(fullname) else None
[all …]
D_bootstrap_external.py591 _imp._fix_co_filename(code, source_path)
895 if (_imp.check_hash_based_pycs != 'never' and
897 _imp.check_hash_based_pycs == 'always')):
899 source_hash = _imp.source_hash(
929 source_hash = _imp.source_hash(source_bytes)
1109 _imp.create_dynamic, spec)
1116 _bootstrap._call_with_frames_removed(_imp.exec_dynamic, module)
1569 extensions = ExtensionFileLoader, _imp.extension_suffixes()
1582 global sys, _imp, _bootstrap
1585 _imp = _bootstrap._imp
[all …]
D__init__.py12 import _imp # Just the builtin component, NOT the full Python module
19 _bootstrap._setup(sys, _imp)
Dmachinery.py3 import _imp
Dutil.py15 import _imp
24 return _imp.source_hash(_RAW_MAGIC_NUMBER, source_bytes)
/external/curl/lib/
DCMakeLists.txt124 …# Add "_imp" as a suffix before the extension to avoid conflicting with the statically linked "lib…
125 set_target_properties(${LIB_NAME} PROPERTIES IMPORT_SUFFIX "_imp.lib")
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/
DMakefile.Watcom18 TARGETS = $(LIBNAME).dll $(LIBNAME)_imp.lib $(LIBNAME).lib
150 @%append $^@ option res=$(RESOURCE), implib=$(LIBNAME)_imp.lib
/external/python/cpython3/Lib/
Dzipimport.py20 import _imp # for check_hash_based_pycs
601 if (_imp.check_hash_based_pycs != 'never' and
602 (check_source or _imp.check_hash_based_pycs == 'always')):
605 source_hash = _imp.source_hash(
Dimp.py9 from _imp import (lock_held, acquire_lock, release_lock,
14 from _imp import create_dynamic
/external/python/cpython3/Lib/test/
Dtest_fork1.py4 import _imp as imp
Dtest_imp.py14 import _imp
347 self.assertEqual(_imp.source_hash(42, b'hi'), b'\xc6\xe7Z\r\x03:}\xab')
348 self.assertEqual(_imp.source_hash(43, b'hi'), b'\x85\x9765\xf8\x9a\x8b9')
/external/python/cpython3/Modules/
Dconfig.c.in42 {"_imp", PyInit__imp},
/external/python/cpython3/Lib/distutils/
Dsysconfig.py12 import _imp
464 g['EXT_SUFFIX'] = _imp.extension_suffixes()[0]
/external/python/cpython3/Lib/test/test_importlib/
Dtest_threaded_import.py8 import _imp as imp
/external/python/setuptools/pkg_resources/
D__init__.py45 import _imp
48 import imp as _imp namespace
2150 _imp.acquire_lock()
2177 _imp.release_lock()
2182 _imp.acquire_lock()
2189 _imp.release_lock()
/external/python/cpython3/Misc/
DHISTORY5232 - Issue #16880: Do not assume _imp.load_dynamic() is defined in the imp module.
7886 - Issue #13959: Add imp.py and rename the built-in module to _imp, allowing for