Home
last modified time | relevance | path

Searched refs:SCCInfo (Results 1 – 2 of 2) sorted by relevance

/system/core/libmemunreachable/
DLeakFolding.h44 struct SCCInfo { struct
46 Node<SCCInfo> node;
55 SCCInfo* accumulator; argument
57 SCCInfo(Allocator<SCCInfo> allocator) : node(this, allocator), in SCCInfo() argument
61 SCCInfo(SCCInfo&&) = delete;
62 DISALLOW_COPY_AND_ASSIGN(SCCInfo);
71 SCCInfo* scc;
82 void AccumulateLeaks(SCCInfo* dominator);
86 allocator::vector<Allocator<SCCInfo>::unique_ptr> leak_scc_;
DLeakFolding.cpp32 Allocator<SCCInfo> scc_allocator = allocator_; in ComputeDAG()
35 Allocator<SCCInfo>::unique_ptr leak_scc; in ComputeDAG()
57 void LeakFolding::AccumulateLeaks(SCCInfo* dominator) { in AccumulateLeaks()
58 std::function<void(SCCInfo*)> walk(std::allocator_arg, allocator_, in AccumulateLeaks()
59 [&](SCCInfo* scc) { in AccumulateLeaks()
64 scc->node.Foreach([&](SCCInfo* ref) { in AccumulateLeaks()