Home
last modified time | relevance | path

Searched refs:real_malloc (Results 1 – 5 of 5) sorted by relevance

/cts/hostsidetests/securitybulletin/securityPatch/CVE-2019-2228/
Dpoc.c27 static void *(*real_malloc)(size_t) = NULL; variable
31 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()
/cts/hostsidetests/securitybulletin/securityPatch/includes/
Dmemutils_track.c33 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()
Dmemutils.c69 real_malloc = dlsym(RTLD_NEXT, "malloc"); in memutils_init()
70 if (NULL == real_malloc) { in memutils_init()
157 return real_malloc(size); in malloc()
Dmemutils_track.h41 static void* (*real_malloc)(size_t) = NULL; variable
Dmemutils.h49 static void* (*real_malloc)(size_t) = NULL; variable