Home | History | Annotate | Download | only in src

Lines Matching refs:MallocHook

118   MallocHook::InvokePreMmapHook(start, length, prot, flags, fd, offset);
120 if (!MallocHook::InvokeMmapReplacement(
125 MallocHook::InvokeMmapHook(result, start, length, prot, flags, fd, offset);
130 MallocHook::InvokeMunmapHook(start, length);
132 if (!MallocHook::InvokeMunmapReplacement(start, length, &result)) {
140 MallocHook::InvokePreSbrkHook(increment);
142 MallocHook::InvokeSbrkHook(result, increment);
146 /*static*/void* MallocHook::UnhookedMMap(void *start, size_t length, int prot,
149 if (!MallocHook::InvokeMmapReplacement(
157 /*static*/int MallocHook::UnhookedMUnmap(void *start, size_t length) {
159 if (!MallocHook::InvokeMunmapReplacement(start, length, &result)) {