Home
last modified time | relevance | path

Searched refs:GCProfilerState (Results 1 – 2 of 2) sorted by relevance

/third_party/node/src/
Dnode_v8.h41 enum class GCProfilerState { kInitialized, kStarted, kStopped }; enum
58 GCProfilerState state;
Dnode_v8.cc312 state(GCProfilerState::kInitialized), in GCProfiler()
323 if (state != GCProfiler::GCProfilerState::kInitialized) { in ~GCProfiler()
347 if (profiler->state != GCProfiler::GCProfilerState::kInitialized) { in Start()
365 profiler->state = GCProfiler::GCProfilerState::kStarted; in Start()
372 if (profiler->state != GCProfiler::GCProfilerState::kStarted) { in Stop()
384 profiler->state = GCProfiler::GCProfilerState::kStopped; in Stop()