Lines Matching refs:profiles_
161 return profiles_->profiles()->length(); in GetProfilesCount()
166 return profiles_->profiles()->at(index); in GetProfile()
177 profiles_->RemoveProfile(profile); in DeleteProfile()
197 rec->entry = profiles_->NewCodeEntry( in CallbackEvent()
199 profiles_->GetName(name)); in CallbackEvent()
213 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name)); in CodeCreateEvent()
227 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name)); in CodeCreateEvent()
243 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name)); in CodeCreateEvent()
269 rec->entry = profiles_->NewCodeEntry( in CodeCreateEvent()
271 profiles_->GetFunctionName(shared->DebugName()), in CodeCreateEvent()
273 profiles_->GetName(source), in CodeCreateEvent()
297 rec->entry = profiles_->NewCodeEntry( in CodeCreateEvent()
299 profiles_->GetName(args_count), in CodeCreateEvent()
335 rec->entry = profiles_->NewCodeEntry( in GetterCallbackEvent()
337 profiles_->GetName(name), in GetterCallbackEvent()
350 rec->entry = profiles_->NewCodeEntry( in RegExpCodeCreateEvent()
352 profiles_->GetName(source), in RegExpCodeCreateEvent()
364 rec->entry = profiles_->NewCodeEntry( in SetterCallbackEvent()
366 profiles_->GetName(name), in SetterCallbackEvent()
378 profiles_(new CpuProfilesCollection(isolate->heap())), in CpuProfiler()
393 profiles_(test_profiles), in CpuProfiler()
403 delete profiles_; in ~CpuProfiler()
414 delete profiles_; in ResetProfiles()
415 profiles_ = new CpuProfilesCollection(isolate()->heap()); in ResetProfiles()
420 if (profiles_->StartProfiling(title, next_profile_uid_++, record_samples)) { in StartProfiling()
428 StartProfiling(profiles_->GetName(title), record_samples); in StartProfiling()
438 generator_ = new ProfileGenerator(profiles_); in StartProcessorIfNotStarted()
472 CpuProfile* result = profiles_->StopProfiling(title); in StopProfiling()
482 const char* profile_title = profiles_->GetName(title); in StopProfiling()
484 return profiles_->StopProfiling(profile_title); in StopProfiling()
489 if (profiles_->IsLastProfile(title)) StopProcessor(); in StopProcessorIfLastProfile()