Lines Matching refs:allocator
26 LeakFolding(Allocator<void> allocator, HeapWalker& heap_walker) in LeakFolding() argument
27 : allocator_(allocator), in LeakFolding()
29 leak_map_(allocator), in LeakFolding()
30 leak_graph_(allocator), in LeakFolding()
31 leak_scc_(allocator) {} in LeakFolding()
41 bool Leaked(allocator::vector<Leak>& leaked, size_t* num_leaks_out, size_t* leak_bytes_out);
61 explicit SCCInfo(Allocator<SCCInfo> allocator) in SCCInfo()
62 : node(this, allocator), in SCCInfo()
83 LeakInfo(const Range& range, Allocator<LeakInfo> allocator) in LeakInfo()
84 : node(this, allocator), range(range), scc(nullptr) {} in LeakInfo()
93 allocator::map<Range, LeakInfo, compare_range> leak_map_;
95 allocator::vector<Allocator<SCCInfo>::unique_ptr> leak_scc_;