Lines Matching refs:profiles_
292 return Isolate::Current()->cpu_profiler()->profiles_->Profiles( in GetProfilesCount()
301 return profiler->profiles_->Profiles(token)->at(index); in GetProfile()
309 return profiler->profiles_->GetProfile(token, uid); in FindProfile()
334 Isolate::Current()->cpu_profiler()->profiles_->RemoveProfile(profile); in DeleteProfile()
341 return Isolate::Current()->cpu_profiler()->profiles_->HasDetachedProfiles(); in HasDetachedProfiles()
451 : profiles_(new CpuProfilesCollection()), in CpuProfiler()
463 delete profiles_; in ~CpuProfiler()
468 delete profiles_; in ResetProfiles()
469 profiles_ = new CpuProfilesCollection(); in ResetProfiles()
473 if (profiles_->StartProfiling(title, next_profile_uid_++)) { in StartCollectingProfile()
481 StartCollectingProfile(profiles_->GetName(title)); in StartCollectingProfile()
492 generator_ = new ProfileGenerator(profiles_); in StartProcessorIfNotStarted()
522 profiles_->StopProfiling(TokenEnumerator::kNoSecurityToken, in StopCollectingProfile()
535 const char* profile_title = profiles_->GetName(title); in StopCollectingProfile()
538 return profiles_->StopProfiling(token, profile_title, actual_sampling_rate); in StopCollectingProfile()
543 if (profiles_->IsLastProfile(title)) StopProcessor(); in StopProcessorIfLastProfile()