Home
last modified time | relevance | path

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

/art/runtime/hprof/
Dhprof.cc689 auto frame_result = frames_.find(frame); in WriteStackTraces()
690 CHECK(frame_result != frames_.end()); in WriteStackTraces()
717 auto frame_result = frames_.find(frame); in WriteStackTraces()
718 CHECK(frame_result != frames_.end()); in WriteStackTraces()
846 auto frames_result = frames_.find(frame); in PopulateAllocationTrackingTraces()
847 if (frames_result == frames_.end()) { in PopulateAllocationTrackingTraces()
848 frames_.emplace(frame, next_frame_id++); in PopulateAllocationTrackingTraces()
854 CHECK_EQ(frames_.size(), next_frame_id); in PopulateAllocationTrackingTraces()
885 gc::EqAllocRecordTypesPtr<gc::AllocRecordStackTraceElement>> frames_; member in art::hprof::Hprof
/art/runtime/gc/
Dheap.cc4040 : frames_(frames), frame_count_(0), max_depth_(max_depth), skip_count_(skip_count) { in StackCrawlState()
4054 state->frames_[state->frame_count_] = ip; in Callback()
4060 uintptr_t* const frames_; member in art::gc::StackCrawlState