HomeSort by relevance Sort by last modified time
    Searched defs:heap_walker_ (Results 1 - 2 of 2) sorted by null

  /system/core/libmemunreachable/
LeakFolding.h 28 heap_walker_(heap_walker),
46 HeapWalker& heap_walker_; member in class:android::LeakFolding
MemUnreachable.cpp 55 : pid_(pid), allocator_(allocator), heap_walker_(allocator_) {}
61 size_t Allocations() { return heap_walker_.Allocations(); }
62 size_t AllocationBytes() { return heap_walker_.AllocationBytes(); }
73 HeapWalker heap_walker_; member in class:android::MemUnreachable
101 [&](uintptr_t base, size_t size) { heap_walker_.Allocation(base, base + size); });
106 heap_walker_.Allocation(it->begin, it->end);
111 heap_walker_.Root(it->begin, it->end);
118 heap_walker_.Root(thread_it->stack.first, it->end);
121 heap_walker_.Root(thread_it->regs);
124 heap_walker_.Root(refs)
    [all...]

Completed in 122 milliseconds