Searched refs:CpuProfile (Results 1 – 11 of 11) sorted by relevance
41 using i::CpuProfile;247 CpuProfile* profile = profiles->StopProfiling(""); in TEST()312 CpuProfile* profile = profiles->StopProfiling(""); in TEST()357 const v8::CpuProfile* v8profile) { in FindCpuProfile()359 const i::CpuProfile* profile = in FindCpuProfile()360 reinterpret_cast<const i::CpuProfile*>(v8profile); in FindCpuProfile()379 v8::CpuProfile* p1 = cpu_profiler->StopProfiling(name1); in TEST()388 v8::CpuProfile* p2 = cpu_profiler->StopProfiling(name2); in TEST()394 v8::CpuProfile* p3 = cpu_profiler->StopProfiling(name3); in TEST()416 const v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name); in TEST()[all …]
40 using i::CpuProfile;386 CpuProfile* profile = profiles.StopProfiling(""); in TEST()449 CpuProfile* profile = profiles.StopProfiling(""); in TEST()478 CpuProfile* profile = profiles.StopProfiling(""); in TEST()516 CpuProfile* profile = profiler->GetProfile(0); in TEST()597 const v8::CpuProfile* profile = i::ProfilerExtension::last_profile; in TEST()707 const v8::CpuProfile* profile = i::ProfilerExtension::last_profile; in TEST()
45 static v8::CpuProfile* last_profile;
37 v8::CpuProfile* ProfilerExtension::last_profile = NULL;
222 class CpuProfile {224 CpuProfile(Isolate* isolate, const char* title, bool record_samples);256 DISALLOW_COPY_AND_ASSIGN(CpuProfile);309 CpuProfile* StopProfiling(const char* title);310 List<CpuProfile*>* profiles() { return &finished_profiles_; } in profiles()324 void RemoveProfile(CpuProfile* profile);344 List<CpuProfile*> finished_profiles_;349 List<CpuProfile*> current_profiles_;
24 class CpuProfile; variable210 CpuProfile* StopProfiling(const char* title);211 CpuProfile* StopProfiling(String* title);213 CpuProfile* GetProfile(int index);215 void DeleteProfile(CpuProfile* profile);
351 CpuProfile::CpuProfile(Isolate* isolate, const char* title, bool record_samples) in CpuProfile() function in v8::internal::CpuProfile358 void CpuProfile::AddPath(base::TimeTicks timestamp, in AddPath()368 void CpuProfile::CalculateTotalTicksAndSamplingRate() { in CalculateTotalTicksAndSamplingRate()373 void CpuProfile::Print() { in Print()453 static void DeleteCpuProfile(CpuProfile** profile_ptr) { in DeleteCpuProfile()480 current_profiles_.Add(new CpuProfile(isolate_, title, record_samples)); in StartProfiling()486 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) { in StopProfiling()488 CpuProfile* profile = NULL; in StopProfiling()514 void CpuProfilesCollection::RemoveProfile(CpuProfile* profile) { in RemoveProfile()
182 CpuProfile* CpuProfiler::GetProfile(int index) { in GetProfile()193 void CpuProfiler::DeleteProfile(CpuProfile* profile) { in DeleteProfile()476 CpuProfile* CpuProfiler::StopProfiling(const char* title) { in StopProfiling()479 CpuProfile* result = profiles_->StopProfiling(title); in StopProfiling()487 CpuProfile* CpuProfiler::StopProfiling(String* title) { in StopProfiling()
129 class V8_EXPORT CpuProfile {207 CpuProfile* StopProfiling(Local<String> title);
7994 void CpuProfile::Delete() { in Delete()7995 i::CpuProfile* profile = reinterpret_cast<i::CpuProfile*>(this); in Delete()8003 Local<String> CpuProfile::GetTitle() const { in GetTitle()8004 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetTitle()8011 const CpuProfileNode* CpuProfile::GetTopDownRoot() const { in GetTopDownRoot()8012 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetTopDownRoot()8017 const CpuProfileNode* CpuProfile::GetSample(int index) const { in GetSample()8018 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetSample()8023 int64_t CpuProfile::GetSampleTimestamp(int index) const { in GetSampleTimestamp()8024 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this); in GetSampleTimestamp()[all …]
7503 StopCpuProfiling should return non-const CpuProfile (issue 3213).