HomeSort by relevance Sort by last modified time
    Searched refs:CpuProfile (Results 1 - 10 of 10) sorted by null

  /external/v8/test/cctest/
profiler-extension.h 45 static v8::CpuProfile* last_profile;
test-cpu-profiler.cc 41 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* profile = cpu_profiler->StopProfiling(profile_name)
    [all...]
profiler-extension.cc 37 v8::CpuProfile* ProfilerExtension::last_profile = NULL;
test-profile-generator.cc 40 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/
profile-generator.h 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_; }
324 void RemoveProfile(CpuProfile* profile);
344 List<CpuProfile*> finished_profiles_;
349 List<CpuProfile*> current_profiles_;
cpu-profiler.h 24 class CpuProfile;
210 CpuProfile* StopProfiling(const char* title);
211 CpuProfile* StopProfiling(String* title);
213 CpuProfile* GetProfile(int index);
215 void DeleteProfile(CpuProfile* profile);
profile-generator.cc 351 CpuProfile::CpuProfile(Isolate* isolate, const char* title, bool record_samples)
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* profile)
    [all...]
cpu-profiler.cc 182 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/
v8-profiler.h 126 * CpuProfile contains a CPU profile in a form of top-down call tree
129 class V8_EXPORT CpuProfile {
207 CpuProfile* StopProfiling(Local<String> title);
  /external/v8/src/
api.cc     [all...]

Completed in 277 milliseconds