Home
last modified time | relevance | path

Searched refs:InjectedScript (Results 1 – 13 of 13) sorted by relevance

/external/v8/src/inspector/
Dinjected-script.cc67 class InjectedScript::ProtocolPromiseHandler {
180 InjectedScript::ContextScope scope(session, m_executionContextId); in thenCallback()
225 InjectedScript::ContextScope scope(session, m_executionContextId); in catchCallback()
315 InjectedScript::ContextScope scope(session, m_executionContextId); in sendPromiseCollected()
336 InjectedScript::InjectedScript(InspectedContext* context, int sessionId) in InjectedScript() function in v8_inspector::InjectedScript
339 InjectedScript::~InjectedScript() { discardEvaluateCallbacks(); } in ~InjectedScript()
356 Response InjectedScript::getProperties( in getProperties()
437 Response InjectedScript::getInternalAndPrivateProperties( in getInternalAndPrivateProperties()
520 void InjectedScript::releaseObject(const String16& objectId) { in releaseObject()
526 Response InjectedScript::wrapObject( in wrapObject()
[all …]
Dinspected-context.h20 class InjectedScript; variable
46 InjectedScript* getInjectedScript(int sessionId);
47 InjectedScript* createInjectedScript(int sessionId);
68 std::unordered_map<int, std::unique_ptr<InjectedScript>> m_injectedScripts;
Dinjected-script.h68 class InjectedScript final {
70 InjectedScript(InspectedContext*, int sessionId);
71 ~InjectedScript();
145 InjectedScript* injectedScript() const { return m_injectedScript; } in injectedScript()
155 InjectedScript* m_injectedScript;
245 DISALLOW_COPY_AND_ASSIGN(InjectedScript);
Dinspected-context.cc108 InjectedScript* InspectedContext::getInjectedScript(int sessionId) { in getInjectedScript()
113 InjectedScript* InspectedContext::createInjectedScript(int sessionId) { in createInjectedScript()
114 std::unique_ptr<InjectedScript> injectedScript = in createInjectedScript()
115 std::make_unique<InjectedScript>(this, sessionId); in createInjectedScript()
Dv8-runtime-agent-impl.cc92 bool wrapEvaluateResultAsync(InjectedScript* injectedScript, in wrapEvaluateResultAsync()
113 InjectedScript::Scope& scope, // NOLINT(runtime/references) in innerCallFunctionOn()
253 InjectedScript::ContextScope scope(m_session, contextId); in evaluate()
325 InjectedScript::ObjectScope scope(m_session, promiseObjectId); in awaitPromise()
366 InjectedScript::ObjectScope scope(m_session, objectId.fromJust()); in callFunctionOn()
388 InjectedScript::ContextScope scope(m_session, contextId); in callFunctionOn()
415 InjectedScript::ObjectScope scope(m_session, objectId); in getProperties()
451 InjectedScript::ObjectScope scope(m_session, objectId); in releaseObject()
502 InjectedScript::ContextScope scope(m_session, contextId); in compileScript()
559 InjectedScript::ContextScope scope(m_session, contextId); in runScript()
[all …]
Dv8-inspector-session-impl.h20 class InjectedScript; variable
51 Response findInjectedScript(int contextId, InjectedScript*&);
52 Response findInjectedScript(RemoteObjectIdBase*, InjectedScript*&);
Dv8-inspector-session-impl.cc225 int contextId, InjectedScript*& injectedScript) { in findInjectedScript()
241 RemoteObjectIdBase* objectId, InjectedScript*& injectedScript) { in findInjectedScript()
255 InjectedScript* injectedScript = context->getInjectedScript(sessionId); in releaseObjectGroup()
286 InjectedScript* injectedScript = nullptr; in unwrapObject()
308 InjectedScript* injectedScript = nullptr; in wrapObject()
322 InjectedScript* injectedScript = nullptr; in wrapTable()
333 InjectedScript* injectedScript = context->getInjectedScript(sessionId); in setCustomObjectFormatterEnabled()
Dv8-inspector-impl.h133 explicit EvaluateScope(const InjectedScript::Scope& scope);
142 const InjectedScript::Scope& m_scope;
Dcustom-preview.cc50 InjectedScript* getInjectedScript(v8::Local<v8::Context> context, in getInjectedScript()
110 InjectedScript* injectedScript = getInjectedScript(context, sessionId); in substituteObjectTags()
381 InjectedScript* injectedScript = getInjectedScript(context, sessionId); in generateCustomPreview()
Dv8-debugger-agent-impl.cc267 InjectedScript* injectedScript, in buildScopes()
608 InjectedScript::ObjectScope scope(m_session, functionObjectId); in setBreakpointOnFunctionCall()
1020 InjectedScript::CallFrameScope scope(m_session, callFrameId); in restartFrame()
1210 InjectedScript::CallFrameScope scope(m_session, callFrameId); in evaluateOnCallFrame()
1254 InjectedScript::CallFrameScope scope(m_session, callFrameId); in executeWasmEvaluator()
1287 InjectedScript* injected_script = scope.injectedScript(); in executeWasmEvaluator()
1299 InjectedScript::CallFrameScope scope(m_session, callFrameId); in setVariableValue()
1342 InjectedScript::ContextScope scope(m_session, iterator->GetContextId()); in setReturnValue()
1447 InjectedScript* injectedScript = nullptr; in currentCallFrames()
1784 InjectedScript* injectedScript = nullptr; in didPause()
Dv8-runtime-agent-impl.h45 class InjectedScript; variable
Dv8-console.cc49 InjectedScript* injectedScript(int sessionId) { in injectedScript()
581 InjectedScript* injectedScript = helper.injectedScript(sessionId); in lastEvaluationResultCallback()
593 InjectedScript* injectedScript = helper.injectedScript(sessionId); in inspectImpl()
Dv8-inspector-impl.cc425 const InjectedScript::Scope& scope) in EvaluateScope()