Lines Matching refs:AllocRecordStackTrace
74 class AllocRecordStackTrace {
78 AllocRecordStackTrace() = default;
80 AllocRecordStackTrace(AllocRecordStackTrace&& r) in AllocRecordStackTrace() function
84 AllocRecordStackTrace(const AllocRecordStackTrace& r) in AllocRecordStackTrace() function
115 bool operator==(const AllocRecordStackTrace& other) const {
128 AllocRecordStackTrace::kHashMultiplier + std::hash<uint32_t>()(r.GetDexPc()); in operator()
131 size_t operator()(const AllocRecordStackTrace& r) const { in operator()
133 size_t result = r.GetTid() * AllocRecordStackTrace::kHashMultiplier + depth; in operator()
135 result = result * AllocRecordStackTrace::kHashMultiplier + (*this)(r.GetStackElement(i)); in operator()
159 AllocRecord(size_t count, mirror::Class* klass, AllocRecordStackTrace&& trace) in AllocRecord()
166 const AllocRecordStackTrace* GetStackTrace() const { in GetStackTrace()
198 AllocRecordStackTrace trace_;