Searched refs:CpuProfile (Results 1 - 10 of 10) sorted by relevance

/external/v8/test/cctest/
H A Dprofiler-extension.h45 static v8::CpuProfile* last_profile;
H A Dtest-cpu-profiler.cc41 using i::CpuProfile;
247 CpuProfile* profile = profiles->StopProfiling("");
312 CpuProfile* profile = profiles->StopProfiling("");
357 const v8::CpuProfile* v8profile) {
359 const i::CpuProfile* profile =
360 reinterpret_cast<const i::CpuProfile*>(v8profile);
379 v8::CpuProfile* p1 = cpu_profiler->StopProfiling(name1);
388 v8::CpuProfile* p2 = cpu_profiler->StopProfiling(name2);
394 v8::CpuProfile* p3 = cpu_profiler->StopProfiling(name3);
416 const v8::CpuProfile* profil
[all...]
H A Dprofiler-extension.cc37 v8::CpuProfile* ProfilerExtension::last_profile = NULL;
H A Dtest-profile-generator.cc40 using i::CpuProfile;
386 CpuProfile* profile = profiles.StopProfiling("");
449 CpuProfile* profile = profiles.StopProfiling("");
478 CpuProfile* profile = profiles.StopProfiling("");
516 CpuProfile* profile = profiler->GetProfile(0);
597 const v8::CpuProfile* profile = i::ProfilerExtension::last_profile;
707 const v8::CpuProfile* profile = i::ProfilerExtension::last_profile;
/external/v8/src/profiler/
H A Dprofile-generator.h222 class CpuProfile { class in namespace:v8::internal
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_; }
324 void RemoveProfile(CpuProfile* profile);
344 List<CpuProfile*> finished_profiles_;
349 List<CpuProfile*> current_profiles_;
H A Dcpu-profiler.h24 class CpuProfile;
210 CpuProfile* StopProfiling(const char* title);
211 CpuProfile* StopProfiling(String* title);
213 CpuProfile* GetProfile(int index);
215 void DeleteProfile(CpuProfile* profile);
H A Dprofile-generator.cc351 CpuProfile::CpuProfile(Isolate* isolate, const char* title, bool record_samples) function in class:v8::internal::CpuProfile
358 void CpuProfile::AddPath(base::TimeTicks timestamp,
368 void CpuProfile::CalculateTotalTicksAndSamplingRate() {
373 void CpuProfile::Print() {
453 static void DeleteCpuProfile(CpuProfile** profile_ptr) {
480 current_profiles_.Add(new CpuProfile(isolate_, title, record_samples));
486 CpuProfile* CpuProfilesCollection::StopProfiling(const char* title) {
488 CpuProfile* profile = NULL;
514 void CpuProfilesCollection::RemoveProfile(CpuProfile* profil
[all...]
H A Dcpu-profiler.cc182 CpuProfile* CpuProfiler::GetProfile(int index) {
193 void CpuProfiler::DeleteProfile(CpuProfile* profile) {
476 CpuProfile* CpuProfiler::StopProfiling(const char* title) {
479 CpuProfile* result = profiles_->StopProfiling(title);
487 CpuProfile* CpuProfiler::StopProfiling(String* title) {
/external/v8/include/
H A Dv8-profiler.h126 * CpuProfile contains a CPU profile in a form of top-down call tree
129 class V8_EXPORT CpuProfile { class in namespace:v8
207 CpuProfile* StopProfiling(Local<String> title);
/external/v8/src/
H A Dapi.cc7994 void CpuProfile::Delete() {
7995 i::CpuProfile* profile = reinterpret_cast<i::CpuProfile*>(this);
8003 Local<String> CpuProfile::GetTitle() const {
8004 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
8011 const CpuProfileNode* CpuProfile::GetTopDownRoot() const {
8012 const i::CpuProfile* profile = reinterpret_cast<const i::CpuProfile*>(this);
8017 const CpuProfileNode* CpuProfile
[all...]

Completed in 447 milliseconds