Searched refs:ForEachChunk (Results 1 – 8 of 8) sorted by relevance
/external/compiler-rt/lib/lsan/ |
D | lsan_allocator.h | 31 void ForEachChunk(const Callable &callback);
|
D | lsan_allocator.cc | 197 void ForEachChunk(ForEachChunkCallback callback, void *arg) { in ForEachChunk() function 198 allocator.ForEachChunk(callback, arg); in ForEachChunk()
|
D | lsan_common.cc | 315 ForEachChunk(CollectIgnoredCb, &frontier); in ClassifyAllChunks() 332 ForEachChunk(MarkIndirectlyLeakedCb, nullptr); in ClassifyAllChunks() 398 ForEachChunk(CollectLeaksCb, ¶m->leak_report); in CheckForLeaksCallback() 401 ForEachChunk(ResetTagsCb, nullptr); in CheckForLeaksCallback()
|
D | lsan_common.h | 132 void ForEachChunk(ForEachChunkCallback callback, void *arg);
|
D | lsan_common_linux.cc | 149 ForEachChunk(ProcessPlatformSpecificAllocationsCb, &arg); in ProcessPlatformSpecificAllocations()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_allocator.h | 454 void ForEachChunk(ForEachChunkCallback callback, void *arg) { in ForEachChunk() function 808 void ForEachChunk(ForEachChunkCallback callback, void *arg) { in ForEachChunk() function 1216 void ForEachChunk(ForEachChunkCallback callback, void *arg) { in ForEachChunk() function 1437 void ForEachChunk(ForEachChunkCallback callback, void *arg) { in ForEachChunk() function 1438 primary_.ForEachChunk(callback, arg); in ForEachChunk() 1439 secondary_.ForEachChunk(callback, arg); in ForEachChunk()
|
/external/compiler-rt/lib/asan/ |
D | asan_allocator.cc | 850 void ForEachChunk(ForEachChunkCallback callback, void *arg) { in ForEachChunk() function 851 __asan::get_allocator().ForEachChunk(callback, arg); in ForEachChunk()
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_allocator_test.cc | 684 a->ForEachChunk(IterationTestCallback, &reported_chunks); in TestSizeClassAllocatorIteration() 722 a.ForEachChunk(IterationTestCallback, &reported_chunks); in TEST()
|