Home
last modified time | relevance | path

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

/art/runtime/base/
Darena_allocator.h100 class ArenaAllocatorStatsImpl; variable
103 class ArenaAllocatorStatsImpl<false> {
105 ArenaAllocatorStatsImpl() = default;
106 ArenaAllocatorStatsImpl(const ArenaAllocatorStatsImpl& other) = default;
107 ArenaAllocatorStatsImpl& operator = (const ArenaAllocatorStatsImpl& other) = delete;
109 void Copy(const ArenaAllocatorStatsImpl& other ATTRIBUTE_UNUSED) {} in Copy()
119 class ArenaAllocatorStatsImpl {
121 ArenaAllocatorStatsImpl();
122 ArenaAllocatorStatsImpl(const ArenaAllocatorStatsImpl& other) = default;
123 ArenaAllocatorStatsImpl& operator = (const ArenaAllocatorStatsImpl& other) = delete;
[all …]
Darena_allocator.cc34 const char* const ArenaAllocatorStatsImpl<kCount>::kAllocNames[] = {
88 ArenaAllocatorStatsImpl<kCount>::ArenaAllocatorStatsImpl() in ArenaAllocatorStatsImpl() function in art::ArenaAllocatorStatsImpl
94 void ArenaAllocatorStatsImpl<kCount>::Copy(const ArenaAllocatorStatsImpl& other) { in Copy()
100 void ArenaAllocatorStatsImpl<kCount>::RecordAlloc(size_t bytes, ArenaAllocKind kind) { in RecordAlloc()
106 size_t ArenaAllocatorStatsImpl<kCount>::NumAllocations() const { in NumAllocations()
111 size_t ArenaAllocatorStatsImpl<kCount>::BytesAllocated() const { in BytesAllocated()
117 void ArenaAllocatorStatsImpl<kCount>::Dump(std::ostream& os, const Arena* first, in Dump()
146 template class ArenaAllocatorStatsImpl<kArenaAllocatorCountAllocations>; variable