Searched refs:real_malloc (Results 1 – 5 of 5) sorted by relevance
27 static void *(*real_malloc)(size_t) = NULL; variable31 real_malloc = (void *(*)(size_t))dlsym(RTLD_NEXT, "malloc"); in init()32 if (real_malloc == NULL) { in init()46 void *tmp = real_malloc(size); in malloc()
33 real_malloc = dlsym(RTLD_NEXT, "malloc"); in memutils_init()34 if (!real_malloc) { in memutils_init()87 void* mem_ptr = real_malloc(size); in malloc()
41 static void* (*real_malloc)(size_t) = NULL; variable
71 real_malloc = dlsym(RTLD_NEXT, "malloc"); in memutils_init()72 if (NULL == real_malloc) { in memutils_init()159 return real_malloc(size); in malloc()
49 static void* (*real_malloc)(size_t) = NULL; variable