Home
last modified time | relevance | path

Searched refs:_PyMem_DebugMalloc (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Objects/
Dobmalloc.c21 static void* _PyMem_DebugMalloc(void *ctx, size_t size);
202 … {&_PyMem_Debug.mem, _PyMem_DebugMalloc, _PyMem_DebugCalloc, _PyMem_DebugRealloc, _PyMem_DebugFree}
204 … {&_PyMem_Debug.obj, _PyMem_DebugMalloc, _PyMem_DebugCalloc, _PyMem_DebugRealloc, _PyMem_DebugFree}
396 return (_PyObject.malloc == _PyMem_DebugMalloc); in _PyMem_DebugEnabled()
431 if (_PyMem.malloc == _PyMem_DebugMalloc) { in _PyMem_SetupDebugHooksDomain()
437 alloc.malloc = _PyMem_DebugMalloc; in _PyMem_SetupDebugHooksDomain()
444 if (_PyObject.malloc == _PyMem_DebugMalloc) { in _PyMem_SetupDebugHooksDomain()
450 alloc.malloc = _PyMem_DebugMalloc; in _PyMem_SetupDebugHooksDomain()
2234 _PyMem_DebugMalloc(void *ctx, size_t nbytes) in _PyMem_DebugMalloc() function
/external/python/cpython2/Include/
Dpymem.h62 #define PyMem_MALLOC _PyMem_DebugMalloc
Dobjimpl.h115 PyAPI_FUNC(void *) _PyMem_DebugMalloc(size_t nbytes);
/external/python/cpython2/Objects/
Dobmalloc.c1442 _PyMem_DebugMalloc(size_t nbytes) in _PyMem_DebugMalloc() function