HomeSort by relevance Sort by last modified time
    Searched refs:ForEachChunk (Results 1 - 9 of 9) sorted by null

  /external/compiler-rt/lib/lsan/
lsan_allocator.h 31 void ForEachChunk(const Callable &callback);
lsan_common.h 143 void ForEachChunk(ForEachChunkCallback callback, void *arg);
lsan_allocator.cc 199 void ForEachChunk(ForEachChunkCallback callback, void *arg) {
200 allocator.ForEachChunk(callback, arg);
lsan_common.cc 316 // ForEachChunk callback. If the chunk is marked as leaked, marks all chunks
327 // ForEachChunk callback. If chunk is marked as ignored, adds its address to
345 ForEachChunk(CollectIgnoredCb, &frontier);
362 ForEachChunk(MarkIndirectlyLeakedCb, nullptr);
365 // ForEachChunk callback. Resets the tags to pre-leak-check state.
379 // ForEachChunk callback. Aggregates information about unreachable chunks into
428 ForEachChunk(CollectLeaksCb, &param->leak_report);
431 ForEachChunk(ResetTagsCb, nullptr);
lsan_common_linux.cc 109 // ForEachChunk callback. Identifies unreachable chunks which must be treated as
156 ForEachChunk(ProcessPlatformSpecificAllocationsCb, &arg);
  /external/compiler-rt/lib/asan/
asan_memory_profile.cc 87 __lsan::ForEachChunk(ChunkCallback, &hp);
asan_allocator.cc 866 void ForEachChunk(ForEachChunkCallback callback, void *arg) {
867 __asan::get_allocator().ForEachChunk(callback, arg);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 469 void ForEachChunk(ForEachChunkCallback callback, void *arg) {
832 void ForEachChunk(ForEachChunkCallback callback, void *arg) {
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 692 a->ForEachChunk(IterationTestCallback, &reported_chunks);
730 a.ForEachChunk(IterationTestCallback, &reported_chunks);

Completed in 512 milliseconds