Lines Matching refs:AllocRecordStackTrace
73 class AllocRecordStackTrace {
77 AllocRecordStackTrace() = default;
79 AllocRecordStackTrace(AllocRecordStackTrace&& r) in AllocRecordStackTrace() function
83 AllocRecordStackTrace(const AllocRecordStackTrace& r) in AllocRecordStackTrace() function
114 bool operator==(const AllocRecordStackTrace& other) const {
127 AllocRecordStackTrace::kHashMultiplier + std::hash<uint32_t>()(r.GetDexPc()); in operator()
130 size_t operator()(const AllocRecordStackTrace& r) const { in operator()
132 size_t result = r.GetTid() * AllocRecordStackTrace::kHashMultiplier + depth; in operator()
134 result = result * AllocRecordStackTrace::kHashMultiplier + (*this)(r.GetStackElement(i)); in operator()
158 AllocRecord(size_t count, mirror::Class* klass, AllocRecordStackTrace&& trace) in AllocRecord()
165 const AllocRecordStackTrace* GetStackTrace() const { in GetStackTrace()
197 AllocRecordStackTrace trace_;