Searched refs:real_memcpy (Results 1 – 2 of 2) sorted by relevance
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2019-9247/ |
D | poc.cpp | 36 static void* (*real_memcpy)(void*, const void*, size_t) = nullptr; variable 47 real_memcpy = (void *(*)(void *, const void *, in memory_copy_init() 49 if (!real_memcpy) { in memory_copy_init() 68 return real_memcpy(destination, source, num); in memcpy()
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2019-2099/ |
D | poc.cpp | 34 static void *(*real_memcpy)(void *to, const void *from, size_t numBytes) = nullptr; variable 37 real_memcpy = (void *(*)(void *, const void *, size_t))dlsym(RTLD_NEXT, "memcpy"); in init() 38 if (real_memcpy == nullptr) { in init() 51 return real_memcpy(to, from, numBytes); in memcpy()
|