Searched refs:_imp (Results 1 – 16 of 16) sorted by relevance
/external/python/cpython3/Lib/importlib/ |
D | _bootstrap.py | 172 _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.py | 591 _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__.py | 12 import _imp # Just the builtin component, NOT the full Python module 19 _bootstrap._setup(sys, _imp)
|
D | machinery.py | 3 import _imp
|
D | util.py | 15 import _imp 24 return _imp.source_hash(_RAW_MAGIC_NUMBER, source_bytes)
|
/external/curl/lib/ |
D | CMakeLists.txt | 124 …# 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/ |
D | Makefile.Watcom | 18 TARGETS = $(LIBNAME).dll $(LIBNAME)_imp.lib $(LIBNAME).lib 150 @%append $^@ option res=$(RESOURCE), implib=$(LIBNAME)_imp.lib
|
/external/python/cpython3/Lib/ |
D | zipimport.py | 20 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(
|
D | imp.py | 9 from _imp import (lock_held, acquire_lock, release_lock, 14 from _imp import create_dynamic
|
/external/python/cpython3/Lib/test/ |
D | test_fork1.py | 4 import _imp as imp
|
D | test_imp.py | 14 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/ |
D | config.c.in | 42 {"_imp", PyInit__imp},
|
/external/python/cpython3/Lib/distutils/ |
D | sysconfig.py | 12 import _imp 464 g['EXT_SUFFIX'] = _imp.extension_suffixes()[0]
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | test_threaded_import.py | 8 import _imp as imp
|
/external/python/setuptools/pkg_resources/ |
D | __init__.py | 45 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/ |
D | HISTORY | 5232 - 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
|