OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ForEachChunk
(Results
1 - 8
of
8
) sorted by null
/external/compiler-rt/lib/lsan/
lsan_allocator.h
31
void
ForEachChunk
(const Callable &callback);
lsan_common.h
126
void
ForEachChunk
(ForEachChunkCallback callback, void *arg);
lsan_common_linux.cc
103
//
ForEachChunk
callback. Identifies unreachable chunks which must be treated as
122
ForEachChunk
(ProcessPlatformSpecificAllocationsCb, frontier);
lsan_allocator.cc
175
void
ForEachChunk
(ForEachChunkCallback callback, void *arg) {
176
allocator.
ForEachChunk
(callback, arg);
lsan_common.cc
224
//
ForEachChunk
callback. If the chunk is marked as leaked, marks all chunks
235
//
ForEachChunk
callback. If chunk is marked as ignored, adds its address to
263
ForEachChunk
(CollectIgnoredCb, &frontier);
270
ForEachChunk
(MarkIndirectlyLeakedCb, 0 /* arg */);
281
//
ForEachChunk
callback. Aggregates unreachable chunks into a LeakReport.
331
ForEachChunk
(PrintLeakedCb, 0 /* arg */);
346
ForEachChunk
(CollectLeaksCb, ¶m->leak_report);
/external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h
441
void
ForEachChunk
(ForEachChunkCallback callback, void *arg) {
732
void
ForEachChunk
(ForEachChunkCallback callback, void *arg) {
[
all
...]
/external/compiler-rt/lib/asan/
asan_allocator2.cc
767
void
ForEachChunk
(ForEachChunkCallback callback, void *arg) {
768
__asan::allocator.
ForEachChunk
(callback, arg);
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc
671
a->
ForEachChunk
(IterationTestCallback, &reported_chunks);
709
a.
ForEachChunk
(IterationTestCallback, &reported_chunks);
Completed in 95 milliseconds