Searched refs:ForEachChunk (Results 1 - 7 of 7) sorted by relevance

/freebsd-11.0-release/contrib/compiler-rt/lib/lsan/
H A Dlsan_allocator.h31 void ForEachChunk(const Callable &callback);
H A Dlsan_common.h132 void ForEachChunk(ForEachChunkCallback callback, void *arg);
H A Dlsan_allocator.cc197 void ForEachChunk(ForEachChunkCallback callback, void *arg) { function in namespace:__lsan
198 allocator.ForEachChunk(callback, arg);
H A Dlsan_common.cc286 // ForEachChunk callback. If the chunk is marked as leaked, marks all chunks
297 // ForEachChunk callback. If chunk is marked as ignored, adds its address to
315 ForEachChunk(CollectIgnoredCb, &frontier);
332 ForEachChunk(MarkIndirectlyLeakedCb, nullptr);
335 // ForEachChunk callback. Resets the tags to pre-leak-check state.
349 // ForEachChunk callback. Aggregates information about unreachable chunks into
398 ForEachChunk(CollectLeaksCb, &param->leak_report);
401 ForEachChunk(ResetTagsCb, nullptr);
H A Dlsan_common_linux.cc105 // ForEachChunk callback. Identifies unreachable chunks which must be treated as
149 ForEachChunk(ProcessPlatformSpecificAllocationsCb, &arg);
/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h454 void ForEachChunk(ForEachChunkCallback callback, void *arg) { function in class:__sanitizer::SizeClassAllocator64
808 void ForEachChunk(ForEachChunkCallback callback, void *arg) { function in class:__sanitizer::SizeClassAllocator32
1216 void ForEachChunk(ForEachChunkCallback callback, void *arg) { function in class:__sanitizer::LargeMmapAllocator
1437 void ForEachChunk(ForEachChunkCallback callback, void *arg) { function in class:__sanitizer::CombinedAllocator
1438 primary_.ForEachChunk(callback, arg);
1439 secondary_.ForEachChunk(callback, arg);
/freebsd-11.0-release/contrib/compiler-rt/lib/asan/
H A Dasan_allocator.cc850 void ForEachChunk(ForEachChunkCallback callback, void *arg) { function in namespace:__lsan
851 __asan::get_allocator().ForEachChunk(callback, arg);

Completed in 71 milliseconds