Searched refs:dwBytes (Results 1 – 1 of 1) sorted by relevance
| /src/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_malloc_win.cpp | 45 LPVOID WINAPI HeapAlloc(HANDLE hHeap, DWORD dwFlags, size_t dwBytes); 47 size_t dwBytes); 225 size_t dwBytes) { in INTERCEPTOR_WINAPI() argument 231 return REAL(HeapAlloc)(hHeap, dwFlags, dwBytes); in INTERCEPTOR_WINAPI() 241 void *p = asan_malloc(dwBytes, &stack); in INTERCEPTOR_WINAPI() 277 HANDLE hHeap, DWORD dwFlags, LPVOID lpMem, size_t dwBytes) { in SharedReAlloc() argument 301 return reallocFunc(hHeap, dwFlags, lpMem, dwBytes); in SharedReAlloc() 313 replacement_alloc = asan_calloc(1, dwBytes, &stack); in SharedReAlloc() 315 replacement_alloc = asan_malloc(dwBytes, &stack); in SharedReAlloc() 331 return reallocFunc(hHeap, dwFlags, lpMem, dwBytes); in SharedReAlloc() [all …]
|