Home
last modified time | relevance | path

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

/system/core/libmemunreachable/
DLeakFolding.h48 struct SCCInfo { struct
50 Node<SCCInfo> node;
59 SCCInfo* accumulator; argument
61 explicit SCCInfo(Allocator<SCCInfo> allocator) in SCCInfo() argument
71 SCCInfo(SCCInfo&&) = delete;
72 DISALLOW_COPY_AND_ASSIGN(SCCInfo);
81 SCCInfo* scc;
91 void AccumulateLeaks(SCCInfo* dominator);
95 allocator::vector<Allocator<SCCInfo>::unique_ptr> leak_scc_;
DLeakFolding.cpp34 Allocator<SCCInfo> scc_allocator = allocator_; in ComputeDAG()
37 Allocator<SCCInfo>::unique_ptr leak_scc; in ComputeDAG()
59 void LeakFolding::AccumulateLeaks(SCCInfo* dominator) { in AccumulateLeaks()
60 std::function<void(SCCInfo*)> walk([&](SCCInfo* scc) { in AccumulateLeaks()
65 scc->node.Foreach([&](SCCInfo* ref) { walk(ref); }); in AccumulateLeaks()