Lines Matching refs:cpu_profiler

279   CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
337 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
381 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
382 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(cpu_profiler);
386 cpu_profiler->StartProfiling(name1);
387 v8::CpuProfile* p1 = cpu_profiler->StopProfiling(name1);
390 CHECK(FindCpuProfile(cpu_profiler, p1));
395 cpu_profiler->StartProfiling(name2);
396 v8::CpuProfile* p2 = cpu_profiler->StopProfiling(name2);
399 CHECK(FindCpuProfile(cpu_profiler, p2));
401 cpu_profiler->StartProfiling(name3);
402 v8::CpuProfile* p3 = cpu_profiler->StopProfiling(name3);
406 CHECK(FindCpuProfile(cpu_profiler, p3));
407 CHECK(FindCpuProfile(cpu_profiler, p2));
410 CHECK(!FindCpuProfile(cpu_profiler, p2));
411 CHECK(FindCpuProfile(cpu_profiler, p3));
420 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
423 cpu_profiler->StartProfiling(profile_name);
424 const v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);
434 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
437 cpu_profiler->SetSamplingInterval(100);
438 cpu_profiler->StartProfiling(profile_name, collect_samples);
448 v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);
1247 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
1250 v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);
1570 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
1573 v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);
1595 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
1598 cpu_profiler->StartProfiling(profile_name);
1601 i::ProfilerEventsProcessor* processor = isolate->cpu_profiler()->processor();
1604 cpu_profiler->SetIdle(true);
1608 cpu_profiler->SetIdle(false);
1611 v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);