Searched refs:current_profiles_ (Results 1 – 2 of 2) sorted by relevance
562 current_profiles_.Iterate(DeleteCpuProfile); in ~CpuProfilesCollection()569 if (current_profiles_.length() >= kMaxSimultaneousProfiles) { in StartProfiling()573 for (int i = 0; i < current_profiles_.length(); ++i) { in StartProfiling()574 if (strcmp(current_profiles_[i]->title(), title) == 0) { in StartProfiling()581 current_profiles_.Add(new CpuProfile(profiler_, title, record_samples)); in StartProfiling()591 for (int i = current_profiles_.length() - 1; i >= 0; --i) { in StopProfiling()592 if (title_len == 0 || strcmp(current_profiles_[i]->title(), title) == 0) { in StopProfiling()593 profile = current_profiles_.Remove(i); in StopProfiling()609 if (current_profiles_.length() != 1) return false; in IsLastProfile()611 || strcmp(current_profiles_[0]->title(), title) == 0; in IsLastProfile()[all …]
362 List<CpuProfile*> current_profiles_; variable