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

/bionic/libc/bionic/
H A Dmalloc_debug_common.cpp299 static void InitMallocFunction(void* malloc_impl_handler, FunctionType* func, const char* prefix, const char* suffix) { argument
302 *func = reinterpret_cast<FunctionType>(dlsym(malloc_impl_handler, symbol));
308 static void InitMalloc(void* malloc_impl_handler, MallocDebug* table, const char* prefix) { argument
312 InitMallocFunction<MallocDebugCalloc>(malloc_impl_handler, &table->calloc, prefix, "calloc");
313 InitMallocFunction<MallocDebugFree>(malloc_impl_handler, &table->free, prefix, "free");
314 InitMallocFunction<MallocDebugMallinfo>(malloc_impl_handler, &table->mallinfo, prefix, "mallinfo");
315 InitMallocFunction<MallocDebugMalloc>(malloc_impl_handler, &table->malloc, prefix, "malloc");
316 InitMallocFunction<MallocDebugMallocUsableSize>(malloc_impl_handler, &table->malloc_usable_size, prefix, "malloc_usable_size");
317 InitMallocFunction<MallocDebugMemalign>(malloc_impl_handler, &table->memalign, prefix, "memalign");
318 InitMallocFunction<MallocDebugPosixMemalign>(malloc_impl_handler,
[all...]

Completed in 63 milliseconds