Searched refs:ForEachChunk (Results 1 – 9 of 9) sorted by relevance
/external/compiler-rt/lib/lsan/ |
D | lsan_allocator.h | 31 void ForEachChunk(const Callable &callback);
|
D | lsan_allocator.cc | 199 void ForEachChunk(ForEachChunkCallback callback, void *arg) { in ForEachChunk() function 200 allocator.ForEachChunk(callback, arg); in ForEachChunk()
|
D | lsan_common.cc | 345 ForEachChunk(CollectIgnoredCb, &frontier); in ClassifyAllChunks() 362 ForEachChunk(MarkIndirectlyLeakedCb, nullptr); in ClassifyAllChunks() 428 ForEachChunk(CollectLeaksCb, ¶m->leak_report); in CheckForLeaksCallback() 431 ForEachChunk(ResetTagsCb, nullptr); in CheckForLeaksCallback()
|
D | lsan_common.h | 143 void ForEachChunk(ForEachChunkCallback callback, void *arg);
|
D | lsan_common_linux.cc | 156 ForEachChunk(ProcessPlatformSpecificAllocationsCb, &arg); in ProcessPlatformSpecificAllocations()
|
/external/compiler-rt/lib/asan/ |
D | asan_memory_profile.cc | 87 __lsan::ForEachChunk(ChunkCallback, &hp); in MemoryProfileCB()
|
D | asan_allocator.cc | 866 void ForEachChunk(ForEachChunkCallback callback, void *arg) { in ForEachChunk() function 867 __asan::get_allocator().ForEachChunk(callback, arg); in ForEachChunk()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_allocator.h | 469 void ForEachChunk(ForEachChunkCallback callback, void *arg) { in ForEachChunk() function 832 void ForEachChunk(ForEachChunkCallback callback, void *arg) { in ForEachChunk() function 1240 void ForEachChunk(ForEachChunkCallback callback, void *arg) { in ForEachChunk() function 1461 void ForEachChunk(ForEachChunkCallback callback, void *arg) { in ForEachChunk() function 1462 primary_.ForEachChunk(callback, arg); in ForEachChunk() 1463 secondary_.ForEachChunk(callback, arg); in ForEachChunk()
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_allocator_test.cc | 692 a->ForEachChunk(IterationTestCallback, &reported_chunks); in TestSizeClassAllocatorIteration() 730 a.ForEachChunk(IterationTestCallback, &reported_chunks); in TEST()
|