HomeSort by relevance Sort by last modified time
    Searched refs:_pointer_type_cache (Results 1 - 14 of 14) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_incomplete.py 35 # to not leak references, we must clean _pointer_type_cache
36 from ctypes import _pointer_type_cache namespace
37 del _pointer_type_cache[cell]
test_values.py 75 from ctypes import _pointer_type_cache namespace
76 del _pointer_type_cache[struct_frozen]
__init__.py 86 ptc = ctypes._pointer_type_cache.copy()
93 ctypes._pointer_type_cache = ptc.copy()
test_keeprefs.py 148 from ctypes import _pointer_type_cache namespace
149 del _pointer_type_cache[POINT]
test_pointers.py 126 from ctypes import _pointer_type_cache namespace
127 del _pointer_type_cache[Table]
test_byteswap.py 211 del ctypes._pointer_type_cache[TestStructure]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_incomplete.py 35 # to not leak references, we must clean _pointer_type_cache
36 from ctypes import _pointer_type_cache namespace
37 del _pointer_type_cache[cell]
test_values.py 75 from ctypes import _pointer_type_cache namespace
76 del _pointer_type_cache[struct_frozen]
__init__.py 86 ptc = ctypes._pointer_type_cache.copy()
93 ctypes._pointer_type_cache = ptc.copy()
test_keeprefs.py 148 from ctypes import _pointer_type_cache namespace
149 del _pointer_type_cache[POINT]
test_pointers.py 126 from ctypes import _pointer_type_cache namespace
127 del _pointer_type_cache[Table]
test_byteswap.py 211 del ctypes._pointer_type_cache[TestStructure]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 263 from _ctypes import POINTER, pointer, _pointer_type_cache namespace
266 _pointer_type_cache.clear()
274 _pointer_type_cache[None] = c_void_p
317 if _pointer_type_cache.get(cls, None) is not None:
319 if id(pointer) not in _pointer_type_cache:
322 _pointer_type_cache[cls] = pointer
323 del _pointer_type_cache[id(pointer)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 263 from _ctypes import POINTER, pointer, _pointer_type_cache namespace
266 _pointer_type_cache.clear()
274 _pointer_type_cache[None] = c_void_p
317 if _pointer_type_cache.get(cls, None) is not None:
319 if id(pointer) not in _pointer_type_cache:
322 _pointer_type_cache[cls] = pointer
323 del _pointer_type_cache[id(pointer)]

Completed in 592 milliseconds