Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/profiler/
Dtracing-cpu-profiler.cc15 TracingCpuProfilerImpl::TracingCpuProfilerImpl(Isolate* isolate) in TracingCpuProfilerImpl() function in v8::internal::TracingCpuProfilerImpl
20 TracingCpuProfilerImpl::~TracingCpuProfilerImpl() { in ~TracingCpuProfilerImpl()
26 void TracingCpuProfilerImpl::OnTraceEnabled() { in OnTraceEnabled()
34 reinterpret_cast<TracingCpuProfilerImpl*>(data)->StartProfiling(); in OnTraceEnabled()
39 void TracingCpuProfilerImpl::OnTraceDisabled() { in OnTraceDisabled()
45 reinterpret_cast<TracingCpuProfilerImpl*>(data)->StopProfiling(); in OnTraceDisabled()
50 void TracingCpuProfilerImpl::StartProfiling() { in StartProfiling()
60 void TracingCpuProfilerImpl::StopProfiling() { in StopProfiling()
Dtracing-cpu-profiler.h21 class TracingCpuProfilerImpl final
24 explicit TracingCpuProfilerImpl(Isolate*);
25 ~TracingCpuProfilerImpl() override;
26 TracingCpuProfilerImpl(const TracingCpuProfilerImpl&) = delete;
27 TracingCpuProfilerImpl& operator=(const TracingCpuProfilerImpl&) = delete;
/third_party/node/deps/v8/src/execution/
Disolate.h137 class TracingCpuProfilerImpl; variable
2355 std::unique_ptr<TracingCpuProfilerImpl> tracing_cpu_profiler_;
Disolate.cc4051 tracing_cpu_profiler_.reset(new TracingCpuProfilerImpl(this)); in ThrowInternal()