Home | History | Annotate | Download | only in cctest

Lines Matching defs:cpu_profiler

274   CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
329 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler();
373 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
374 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(cpu_profiler);
378 cpu_profiler->StartProfiling(name1);
379 v8::CpuProfile* p1 = cpu_profiler->StopProfiling(name1);
382 CHECK(FindCpuProfile(cpu_profiler, p1));
387 cpu_profiler->StartProfiling(name2);
388 v8::CpuProfile* p2 = cpu_profiler->StopProfiling(name2);
391 CHECK(FindCpuProfile(cpu_profiler, p2));
393 cpu_profiler->StartProfiling(name3);
394 v8::CpuProfile* p3 = cpu_profiler->StopProfiling(name3);
398 CHECK(FindCpuProfile(cpu_profiler, p3));
399 CHECK(FindCpuProfile(cpu_profiler, p2));
402 CHECK(!FindCpuProfile(cpu_profiler, p2));
403 CHECK(FindCpuProfile(cpu_profiler, p3));
412 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
415 cpu_profiler->StartProfiling(profile_name);
416 const v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);
426 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
429 cpu_profiler->StartProfiling(profile_name, collect_samples);
438 v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);
1363 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
1366 v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);
1614 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
1617 cpu_profiler->StartProfiling(profile_name);
1620 i::ProfilerEventsProcessor* processor = isolate->cpu_profiler()->processor();
1623 cpu_profiler->SetIdle(true);
1629 cpu_profiler->SetIdle(false);
1633 v8::CpuProfile* profile = cpu_profiler->StopProfiling(profile_name);