Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dv8-heap-profiler-agent-impl.cc147 V8HeapProfilerAgentImpl::V8HeapProfilerAgentImpl( in V8HeapProfilerAgentImpl() function in v8_inspector::V8HeapProfilerAgentImpl
156 V8HeapProfilerAgentImpl::~V8HeapProfilerAgentImpl() {} in ~V8HeapProfilerAgentImpl()
158 void V8HeapProfilerAgentImpl::restore() { in restore()
175 Response V8HeapProfilerAgentImpl::collectGarbage() { in collectGarbage()
180 Response V8HeapProfilerAgentImpl::startTrackingHeapObjects( in startTrackingHeapObjects()
190 Response V8HeapProfilerAgentImpl::stopTrackingHeapObjects( in stopTrackingHeapObjects()
198 Response V8HeapProfilerAgentImpl::enable() { in enable()
203 Response V8HeapProfilerAgentImpl::disable() { in disable()
215 Response V8HeapProfilerAgentImpl::takeHeapSnapshot(Maybe<bool> reportProgress) { in takeHeapSnapshot()
232 Response V8HeapProfilerAgentImpl::getObjectByHeapObjectId( in getObjectByHeapObjectId()
[all …]
Dv8-heap-profiler-agent-impl.h21 class V8HeapProfilerAgentImpl : public protocol::HeapProfiler::Backend {
23 V8HeapProfilerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
25 ~V8HeapProfilerAgentImpl() override;
64 DISALLOW_COPY_AND_ASSIGN(V8HeapProfilerAgentImpl);
Dv8-inspector-session-impl.h24 class V8HeapProfilerAgentImpl; variable
119 std::unique_ptr<V8HeapProfilerAgentImpl> m_heapProfilerAgent;
Dv8-inspector-session-impl.cc91 m_heapProfilerAgent.reset(new V8HeapProfilerAgentImpl( in V8InspectorSessionImpl()