Home
last modified time | relevance | path

Searched refs:TracingCpuProfilerImpl (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/profiler/
Dtracing-cpu-profiler.cc14 TracingCpuProfilerImpl::TracingCpuProfilerImpl(Isolate* isolate) in TracingCpuProfilerImpl() function in v8::internal::TracingCpuProfilerImpl
23 TracingCpuProfilerImpl::~TracingCpuProfilerImpl() { in ~TracingCpuProfilerImpl()
29 void TracingCpuProfilerImpl::OnTraceEnabled() { in OnTraceEnabled()
37 reinterpret_cast<TracingCpuProfilerImpl*>(data)->StartProfiling(); in OnTraceEnabled()
42 void TracingCpuProfilerImpl::OnTraceDisabled() { in OnTraceDisabled()
48 reinterpret_cast<TracingCpuProfilerImpl*>(data)->StopProfiling(); in OnTraceDisabled()
53 void TracingCpuProfilerImpl::StartProfiling() { in StartProfiling()
66 void TracingCpuProfilerImpl::StopProfiling() { in StopProfiling()
Dtracing-cpu-profiler.h19 class TracingCpuProfilerImpl final
22 explicit TracingCpuProfilerImpl(Isolate*);
23 ~TracingCpuProfilerImpl();
38 DISALLOW_COPY_AND_ASSIGN(TracingCpuProfilerImpl);
/external/v8/src/
Disolate.h112 class TracingCpuProfilerImpl; variable
1852 std::unique_ptr<TracingCpuProfilerImpl> tracing_cpu_profiler_;
Disolate.cc2546 tracing_cpu_profiler_.reset(new TracingCpuProfilerImpl(this)); in Throw()