Home
last modified time | relevance | path

Searched refs:_PyObject (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/third_party/jinja2/
Ddebug.py318 class _PyObject(ctypes.Structure): class
320 _PyObject._fields_ = [
322 ('ob_type', ctypes.POINTER(_PyObject))
327 class _PyObject(ctypes.Structure): class
329 _PyObject._fields_ = [
330 ('_ob_next', ctypes.POINTER(_PyObject)),
331 ('_ob_prev', ctypes.POINTER(_PyObject)),
333 ('ob_type', ctypes.POINTER(_PyObject))
336 class _Traceback(_PyObject):
340 ('tb_frame', ctypes.POINTER(_PyObject)),
/external/python/cpython3/Objects/
Dobmalloc.c209 static PyMemAllocatorEx _PyObject = PYDBGOBJ_ALLOC; variable
213 static PyMemAllocatorEx _PyObject = PYOBJ_ALLOC; variable
331 pymemallocator_eq(&_PyObject, &malloc_alloc)) in _PyMem_GetAllocatorsName()
338 pymemallocator_eq(&_PyObject, &pymalloc)) in _PyMem_GetAllocatorsName()
350 pymemallocator_eq(&_PyObject, &dbg_obj)) in _PyMem_GetAllocatorsName()
396 return (_PyObject.malloc == _PyMem_DebugMalloc); in _PyMem_DebugEnabled()
406 return (_PyObject.malloc == _PyObject_Malloc); in _PyMem_PymallocEnabled()
444 if (_PyObject.malloc == _PyMem_DebugMalloc) { in _PyMem_SetupDebugHooksDomain()
474 case PYMEM_DOMAIN_OBJ: *allocator = _PyObject; break; in PyMem_GetAllocator()
492 case PYMEM_DOMAIN_OBJ: _PyObject = *allocator; break; in PyMem_SetAllocator()
[all …]