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

/bionic/linker/
H A Dlinker_memory.cpp71 void* malloc(size_t byte_count) { function
/bionic/libc/private/
H A Dbionic_malloc_dispatch.h36 // Entry in malloc dispatch table.
60 MallocMalloc malloc; member in struct:MallocDispatch
/bionic/libc/bionic/
H A Dmalloc_common.cpp31 // implementation of a debug malloc that can intercept all of the allocation
34 // library that is only loaded when the property "libc.debug.malloc.options"
57 Malloc(malloc),
120 extern "C" void* malloc(size_t bytes) { function
121 auto _malloc = __libc_globals->malloc_dispatch.malloc;
125 return Malloc(malloc)(bytes);
186 // We implement malloc debugging only in libc.so, so the code below
204 static const char* DEBUG_PROPERTY_OPTIONS = "libc.debug.malloc.options";
205 static const char* DEBUG_PROPERTY_PROGRAM = "libc.debug.malloc.program";
290 if (!InitMallocFunction<MallocMalloc>(impl_handler, &table->malloc, prefi
[all...]

Completed in 105 milliseconds