Home
last modified time | relevance | path

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

/external/v8/src/profiler/
Dprofile-generator.cc610 if (static_cast<int>(current_profiles_.size()) >= kMaxSimultaneousProfiles) { in StartProfiling()
614 for (const std::unique_ptr<CpuProfile>& profile : current_profiles_) { in StartProfiling()
622 current_profiles_.emplace_back( in StartProfiling()
635 std::find_if(current_profiles_.rbegin(), current_profiles_.rend(), in StopProfiling()
640 if (it != current_profiles_.rend()) { in StopProfiling()
645 current_profiles_.erase(--(it.base())); in StopProfiling()
656 if (current_profiles_.size() != 1) return false; in IsLastProfile()
658 || strcmp(current_profiles_[0]->title(), title) == 0; in IsLastProfile()
680 for (const std::unique_ptr<CpuProfile>& profile : current_profiles_) { in AddPathToCurrentProfiles()
Dprofile-generator.h433 std::vector<std::unique_ptr<CpuProfile>> current_profiles_; variable