Home
last modified time | relevance | path

Searched refs:V8RuntimeAgentImpl (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/inspector/
Dv8-runtime-agent-impl.cc252 V8RuntimeAgentImpl::V8RuntimeAgentImpl( in V8RuntimeAgentImpl() function in v8_inspector::V8RuntimeAgentImpl
261 V8RuntimeAgentImpl::~V8RuntimeAgentImpl() {} in ~V8RuntimeAgentImpl()
263 void V8RuntimeAgentImpl::evaluate( in evaluate()
328 void V8RuntimeAgentImpl::awaitPromise( in awaitPromise()
347 void V8RuntimeAgentImpl::callFunctionOn( in callFunctionOn()
442 Response V8RuntimeAgentImpl::getProperties( in getProperties()
502 Response V8RuntimeAgentImpl::releaseObject(const String16& objectId) { in releaseObject()
511 Response V8RuntimeAgentImpl::releaseObjectGroup(const String16& objectGroup) { in releaseObjectGroup()
516 Response V8RuntimeAgentImpl::runIfWaitingForDebugger() { in runIfWaitingForDebugger()
521 Response V8RuntimeAgentImpl::setCustomObjectFormatterEnabled(bool enabled) { in setCustomObjectFormatterEnabled()
[all …]
Dv8-runtime-agent-impl.h52 class V8RuntimeAgentImpl : public protocol::Runtime::Backend {
54 V8RuntimeAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
56 ~V8RuntimeAgentImpl() override;
120 DISALLOW_COPY_AND_ASSIGN(V8RuntimeAgentImpl);
Dv8-inspector-session-impl.h26 class V8RuntimeAgentImpl; variable
44 V8RuntimeAgentImpl* runtimeAgent() { return m_runtimeAgent.get(); } in runtimeAgent()
51 void reportAllContexts(V8RuntimeAgentImpl*);
113 std::unique_ptr<V8RuntimeAgentImpl> m_runtimeAgent;
Dv8-inspector-impl.h49 class V8RuntimeAgentImpl; variable
125 V8RuntimeAgentImpl* enabledRuntimeAgentForGroup(int contextGroupId);
Dv8-inspector-impl.cc79 V8RuntimeAgentImpl* V8InspectorImpl::enabledRuntimeAgentForGroup( in enabledRuntimeAgentForGroup()
82 V8RuntimeAgentImpl* agent = session ? session->runtimeAgent() : nullptr; in enabledRuntimeAgentForGroup()
Dv8-inspector-session-impl.cc77 m_runtimeAgent.reset(new V8RuntimeAgentImpl( in V8InspectorSessionImpl()
332 void V8InspectorSessionImpl::reportAllContexts(V8RuntimeAgentImpl* agent) { in reportAllContexts()