Home
last modified time | relevance | path

Searched refs:CpuProfile (Results 1 – 11 of 11) sorted by relevance

/external/v8/test/cctest/
Dtest-cpu-profiler.cc41 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 …]
Dtest-profile-generator.cc40 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()
Dprofiler-extension.h45 static v8::CpuProfile* last_profile;
Dprofiler-extension.cc37 v8::CpuProfile* ProfilerExtension::last_profile = NULL;
/external/v8/src/profiler/
Dprofile-generator.h222 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_;
Dcpu-profiler.h24 class CpuProfile; variable
210 CpuProfile* StopProfiling(const char* title);
211 CpuProfile* StopProfiling(String* title);
213 CpuProfile* GetProfile(int index);
215 void DeleteProfile(CpuProfile* profile);
Dprofile-generator.cc351 CpuProfile::CpuProfile(Isolate* isolate, const char* title, bool record_samples) in CpuProfile() function in v8::internal::CpuProfile
358 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()
Dcpu-profiler.cc182 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()
/external/v8/include/
Dv8-profiler.h129 class V8_EXPORT CpuProfile {
207 CpuProfile* StopProfiling(Local<String> title);
/external/v8/src/
Dapi.cc7994 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 …]
/external/v8/
DChangeLog7503 StopCpuProfiling should return non-const CpuProfile (issue 3213).