Home | History | Annotate | Download | only in trace_event

Lines Matching full:backtrace

27 Backtrace::Backtrace(): frame_count(0) {}
29 bool operator==(const Backtrace& lhs, const Backtrace& rhs) {
34 bool operator!=(const Backtrace& lhs, const Backtrace& rhs) {
40 AllocationContext::AllocationContext(const Backtrace& backtrace,
42 : backtrace(backtrace), type_name(type_name) {}
45 return (lhs.backtrace == rhs.backtrace) && (lhs.type_name == rhs.type_name);
56 using base::trace_event::Backtrace;
63 size_t hash<Backtrace>::operator()(const Backtrace& backtrace) const {
64 const void* values[Backtrace::kMaxFrameCount];
65 for (size_t i = 0; i != backtrace.frame_count; ++i) {
66 values[i] = backtrace.frames[i].value;
70 static_cast<int>(backtrace.frame_count * sizeof(*values)));
74 size_t backtrace_hash = hash<Backtrace>()(ctx.backtrace);