Searched defs:malloc (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/bionic/
H A Dmalloc_debug_common.h30 * Contains declarations of types and constants used by malloc leak
73 /* Entry in malloc dispatch table. */
81 MallocDebugMalloc malloc; member in struct:MallocDebug
91 * These routines must be implemented in .so modules that implement malloc
95 * They are implemented in bionic/libc/bionic/malloc_debug_common.c when malloc
H A Dmalloc_debug_common.cpp31 * routines that are used by malloc leak detection code and other components in
35 * more tricky, malloc leak detection code, implemented in
205 /* Support for malloc debugging.
208 * malloc routines should not be compiled at all.
212 /* Table for dispatching malloc calls, initialized with default dispatchers. */
219 /* Selector of dispatch table to use for dispatching malloc calls. */
222 extern "C" void* malloc(size_t bytes) { function
223 return __libc_malloc_dispatch->malloc(bytes);
246 /* We implement malloc debugging only in libc.so, so code below
255 /* Table for dispatching malloc call
[all...]

Completed in 619 milliseconds