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