Home | History | Annotate | Download | only in cctest

Lines Matching full:cpu_profiler

253   CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
308 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
352 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
353 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(cpu_profiler);
357 cpu_profiler->StartProfiling(name1);
358 v8::CpuProfile* p1 = cpu_profiler->StopProfiling(name1);
361 CHECK(FindCpuProfile(cpu_profiler, p1));
366 cpu_profiler->StartProfiling(name2);
367 v8::CpuProfile* p2 = cpu_profiler->StopProfiling(name2);
370 CHECK(FindCpuProfile(cpu_profiler, p2));
372 cpu_profiler->StartProfiling(name3);
373 v8::CpuProfile* p3 = cpu_profiler->StopProfiling(name3);
377 CHECK(FindCpuProfile(cpu_profiler, p3));
378 CHECK(FindCpuProfile(cpu_profiler, p2));
381 CHECK(!FindCpuProfile(cpu_profiler, p2));
382 CHECK(FindCpuProfile(cpu_profiler, p3));
391 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
395 cpu_profiler->StartProfiling(profile_name);
396 const v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);
405 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
409 cpu_profiler->StartProfiling(profile_name, collect_samples);
418 v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);
1275 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
1279 v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);
1547 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
1551 cpu_profiler->StartProfiling(profile_name);
1554 i::ProfilerEventsProcessor* processor = isolate->cpu_profiler()->processor();
1557 cpu_profiler->SetIdle(true);
1563 cpu_profiler->SetIdle(false);
1567 v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);