Home
last modified time | relevance | path

Searched refs:cpu_profiler (Results 1 – 8 of 8) sorted by relevance

/external/v8/test/cctest/
Dprofiler-extension.cc62 v8::CpuProfiler* cpu_profiler = args.GetIsolate()->GetCpuProfiler(); in StartProfiling() local
63 cpu_profiler->StartProfiling((args.Length() > 0) in StartProfiling()
70 v8::CpuProfiler* cpu_profiler = args.GetIsolate()->GetCpuProfiler(); in StopProfiling() local
71 last_profile = cpu_profiler->StopProfiling((args.Length() > 0) in StopProfiling()
Dtest-cpu-profiler.cc279 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler(); in TEST()
337 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler(); in TEST()
381 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); in TEST() local
382 i::CpuProfiler* iprofiler = reinterpret_cast<i::CpuProfiler*>(cpu_profiler); in TEST()
386 cpu_profiler->StartProfiling(name1); in TEST()
387 v8::CpuProfile* p1 = cpu_profiler->StopProfiling(name1); in TEST()
390 CHECK(FindCpuProfile(cpu_profiler, p1)); in TEST()
395 cpu_profiler->StartProfiling(name2); in TEST()
396 v8::CpuProfile* p2 = cpu_profiler->StopProfiling(name2); in TEST()
399 CHECK(FindCpuProfile(cpu_profiler, p2)); in TEST()
[all …]
Dtest-profile-generator.cc348 profiles.set_cpu_profiler(CcTest::i_isolate()->cpu_profiler()); in TEST()
419 profiles.set_cpu_profiler(CcTest::i_isolate()->cpu_profiler()); in TEST()
475 profiles.set_cpu_profiler(CcTest::i_isolate()->cpu_profiler()); in TEST()
520 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler(); in TEST()
561 collection.set_cpu_profiler(CcTest::i_isolate()->cpu_profiler()); in TEST()
650 CpuProfiler* profiler = CcTest::i_isolate()->cpu_profiler(); in GetFunctionLineNumber()
677 CpuProfiler* profiler = isolate->cpu_profiler(); in TEST()
Dtest-api.cc99 v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); in RunWithProfiler() local
101 cpu_profiler->StartProfiling(profile_name); in RunWithProfiler()
103 reinterpret_cast<i::CpuProfiler*>(cpu_profiler)->DeleteAllProfiles(); in RunWithProfiler()
/external/v8/src/profiler/
Dprofile-generator.h289 CpuProfiler* cpu_profiler() const { return profiler_; } in cpu_profiler() function
/external/v8/src/
Dlog.cc653 TickSample* sample = isolate->cpu_profiler()->StartTickSample(); in SampleStack()
663 isolate->cpu_profiler()->FinishTickSample(); in SampleStack()
Disolate.h925 CpuProfiler* cpu_profiler() const { return cpu_profiler_; } in cpu_profiler() function
Dapi.cc7152 i::CpuProfiler* cpu_profiler = in GetCpuProfiler() local
7153 reinterpret_cast<i::Isolate*>(this)->cpu_profiler(); in GetCpuProfiler()
7154 return reinterpret_cast<CpuProfiler*>(cpu_profiler); in GetCpuProfiler()
8337 i::CpuProfiler* profiler = profile->cpu_profiler(); in Delete()