• Home
  • Raw
  • Download

Lines Matching refs:_PyMem_Debug

193 } _PyMem_Debug = {  variable
200 …{&_PyMem_Debug.raw, _PyMem_DebugRawMalloc, _PyMem_DebugRawCalloc, _PyMem_DebugRawRealloc, _PyMem_D…
202 … {&_PyMem_Debug.mem, _PyMem_DebugMalloc, _PyMem_DebugCalloc, _PyMem_DebugRealloc, _PyMem_DebugFree}
204 … {&_PyMem_Debug.obj, _PyMem_DebugMalloc, _PyMem_DebugCalloc, _PyMem_DebugRealloc, _PyMem_DebugFree}
353 if (pymemallocator_eq(&_PyMem_Debug.raw.alloc, &malloc_alloc) && in _PyMem_GetAllocatorsName()
354 pymemallocator_eq(&_PyMem_Debug.mem.alloc, &malloc_alloc) && in _PyMem_GetAllocatorsName()
355 pymemallocator_eq(&_PyMem_Debug.obj.alloc, &malloc_alloc)) in _PyMem_GetAllocatorsName()
360 if (pymemallocator_eq(&_PyMem_Debug.raw.alloc, &malloc_alloc) && in _PyMem_GetAllocatorsName()
361 pymemallocator_eq(&_PyMem_Debug.mem.alloc, &pymalloc) && in _PyMem_GetAllocatorsName()
362 pymemallocator_eq(&_PyMem_Debug.obj.alloc, &pymalloc)) in _PyMem_GetAllocatorsName()
403 return (_PyMem_Debug.obj.alloc.malloc == _PyObject_Malloc); in _PyMem_PymallocEnabled()
422 PyMem_GetAllocator(PYMEM_DOMAIN_RAW, &_PyMem_Debug.raw.alloc); in _PyMem_SetupDebugHooksDomain()
423 alloc.ctx = &_PyMem_Debug.raw; in _PyMem_SetupDebugHooksDomain()
435 PyMem_GetAllocator(PYMEM_DOMAIN_MEM, &_PyMem_Debug.mem.alloc); in _PyMem_SetupDebugHooksDomain()
436 alloc.ctx = &_PyMem_Debug.mem; in _PyMem_SetupDebugHooksDomain()
448 PyMem_GetAllocator(PYMEM_DOMAIN_OBJ, &_PyMem_Debug.obj.alloc); in _PyMem_SetupDebugHooksDomain()
449 alloc.ctx = &_PyMem_Debug.obj; in _PyMem_SetupDebugHooksDomain()