HomeSort by: relevance | last modified time | path
    Searched refs:ForEachChunk (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator_combined.h 196 void ForEachChunk(ForEachChunkCallback callback, void *arg) {
197 primary_.ForEachChunk(callback, arg);
198 secondary_.ForEachChunk(callback, arg);
sanitizer_allocator_secondary.h 276 void ForEachChunk(ForEachChunkCallback callback, void *arg) {
sanitizer_allocator_primary32.h 243 void ForEachChunk(ForEachChunkCallback callback, void *arg) {
sanitizer_allocator_primary64.h 293 void ForEachChunk(ForEachChunkCallback callback, void *arg) {
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_memory_profile.cc 107 __lsan::ForEachChunk(ChunkCallback, &hp);
asan_allocator.cc 325 allocator.ForEachChunk(
1048 void ForEachChunk(ForEachChunkCallback callback, void *arg) {
1049 __asan::get_allocator().ForEachChunk(callback, arg);
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_allocator.h 33 void ForEachChunk(const Callable &callback);
lsan_common.h 197 void ForEachChunk(ForEachChunkCallback callback, void *arg);
lsan_allocator.cc 277 void ForEachChunk(ForEachChunkCallback callback, void *arg) {
278 allocator.ForEachChunk(callback, arg);
lsan_common.cc 355 // ForEachChunk callback. If the chunk is marked as leaked, marks all chunks
366 // ForEachChunk callback. If chunk is marked as ignored, adds its address to
394 // ForEachChunk callback. If the caller pc is invalid or is within the linker,
443 ForEachChunk(MarkInvalidPCCb, &arg);
451 ForEachChunk(CollectIgnoredCb, &frontier);
470 ForEachChunk(MarkIndirectlyLeakedCb, nullptr);
473 // ForEachChunk callback. Resets the tags to pre-leak-check state.
487 // ForEachChunk callback. Aggregates information about unreachable chunks into
561 ForEachChunk(CollectLeaksCb, &param->leak_report);
564 ForEachChunk(ResetTagsCb, nullptr)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 661 // Test ForEachChunk(...)
671 a->ForEachChunk(cb, reinterpret_cast<void *>(&reported_chunks));
937 a->ForEachChunk(IterationTestCallback, &reported_chunks);
982 a.ForEachChunk(IterationTestCallback, &reported_chunks);

Completed in 20 milliseconds