Searched refs:ForEachChunk (Results 1 - 10 of 10) sorted by last modified time

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common.h199 void ForEachChunk(ForEachChunkCallback callback, void *arg);
H A Dlsan_common.cpp354 // ForEachChunk callback. If the chunk is marked as leaked, marks all chunks
365 // ForEachChunk callback. If chunk is marked as ignored, adds its address to
393 // ForEachChunk callback. If the caller pc is invalid or is within the linker,
442 ForEachChunk(MarkInvalidPCCb, &arg);
450 ForEachChunk(CollectIgnoredCb, &frontier);
469 ForEachChunk(MarkIndirectlyLeakedCb, nullptr);
472 // ForEachChunk callback. Resets the tags to pre-leak-check state.
486 // ForEachChunk callback. Aggregates information about unreachable chunks into
560 ForEachChunk(CollectLeaksCb, &param->leak_report);
563 ForEachChunk(ResetTagsC
[all...]
H A Dlsan_allocator.cpp294 void ForEachChunk(ForEachChunkCallback callback, void *arg) { function in namespace:__lsan
295 allocator.ForEachChunk(callback, arg);
H A Dlsan_allocator.h32 void ForEachChunk(const Callable &callback);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_memory_profile.cpp106 __lsan::ForEachChunk(ChunkCallback, &hp);
H A Dasan_allocator.cpp329 allocator.ForEachChunk(
1075 void ForEachChunk(ForEachChunkCallback callback, void *arg) { function in namespace:__lsan
1076 __asan::get_allocator().ForEachChunk(callback, arg);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_secondary.h280 void ForEachChunk(ForEachChunkCallback callback, void *arg) { function in class:LargeMmapAllocator
H A Dsanitizer_allocator_primary64.h293 void ForEachChunk(ForEachChunkCallback callback, void *arg) { function in class:SizeClassAllocator64
H A Dsanitizer_allocator_primary32.h252 void ForEachChunk(ForEachChunkCallback callback, void *arg) { function in class:SizeClassAllocator32
H A Dsanitizer_allocator_combined.h192 void ForEachChunk(ForEachChunkCallback callback, void *arg) { function in class:CombinedAllocator
193 primary_.ForEachChunk(callback, arg);
194 secondary_.ForEachChunk(callback, arg);

Completed in 102 milliseconds