Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dinjected-script.cc57 std::unique_ptr<InjectedScript> InjectedScript::create( in create()
108 return std::unique_ptr<InjectedScript>( in create()
109 new InjectedScript(inspectedContext, injectedScriptValue.As<v8::Object>(), in create()
113 InjectedScript::InjectedScript( in InjectedScript() function in v8_inspector::InjectedScript
120 InjectedScript::~InjectedScript() {} in ~InjectedScript()
122 Response InjectedScript::getProperties( in getProperties()
159 void InjectedScript::releaseObject(const String16& objectId) { in releaseObject()
171 Response InjectedScript::wrapObject( in wrapObject()
192 Response InjectedScript::wrapObjectProperty(v8::Local<v8::Object> object, in wrapObjectProperty()
212 Response InjectedScript::wrapPropertyInArray(v8::Local<v8::Array> array, in wrapPropertyInArray()
[all …]
Dinjected-script-source.js186 var InjectedScript = function() class
189 InjectedScriptHost.nullifyPrototype(InjectedScript);
195 InjectedScript.primitiveTypes = {
207 InjectedScript.closureTypes = { __proto__: null };
208 InjectedScript.closureTypes["local"] = "Local";
209 InjectedScript.closureTypes["closure"] = "Closure";
210 InjectedScript.closureTypes["catch"] = "Catch";
211 InjectedScript.closureTypes["block"] = "Block";
212 InjectedScript.closureTypes["script"] = "Script";
213 InjectedScript.closureTypes["with"] = "With Block";
[all …]
Dinjected-script.h54 class InjectedScript final {
56 static std::unique_ptr<InjectedScript> create(InspectedContext*);
57 ~InjectedScript();
109 InjectedScript* injectedScript() const { return m_injectedScript; } in injectedScript()
119 InjectedScript* m_injectedScript;
180 InjectedScript(InspectedContext*, v8::Local<v8::Object>,
194 DISALLOW_COPY_AND_ASSIGN(InjectedScript);
Dinspected-context.h15 class InjectedScript; variable
39 InjectedScript* getInjectedScript() { return m_injectedScript.get(); } in getInjectedScript()
55 std::unique_ptr<InjectedScript> m_injectedScript;
Dv8-inspector-session-impl.h19 class InjectedScript; variable
47 Response findInjectedScript(int contextId, InjectedScript*&);
48 Response findInjectedScript(RemoteObjectIdBase*, InjectedScript*&);
Dv8-inspector-session-impl.cc202 int contextId, InjectedScript*& injectedScript) { in findInjectedScript()
228 RemoteObjectIdBase* objectId, InjectedScript*& injectedScript) { in findInjectedScript()
248 InjectedScript* injectedScript = contextsIt->second->getInjectedScript(); in releaseObjectGroup()
280 InjectedScript* injectedScript = nullptr; in unwrapObject()
302 InjectedScript* injectedScript = nullptr; in wrapObject()
314 InjectedScript* injectedScript = nullptr; in wrapTable()
326 InjectedScript* injectedScript = idContext.second->getInjectedScript(); in setCustomObjectFormatterEnabled()
Dinspected-context.cc88 std::unique_ptr<InjectedScript> injectedScript = InjectedScript::create(this); in createInjectedScript()
Dv8-runtime-agent-impl.cc187 InjectedScript::ContextScope scope(m_inspector, m_contextGroupId, in wrapObject()
216 bool wrapEvaluateResultAsync(InjectedScript* injectedScript, in wrapEvaluateResultAsync()
279 InjectedScript::ContextScope scope(m_inspector, m_session->contextGroupId(), in evaluate()
332 InjectedScript::ObjectScope scope(m_inspector, m_session->contextGroupId(), in awaitPromise()
353 InjectedScript::ObjectScope scope(m_inspector, m_session->contextGroupId(), in callFunctionOn()
452 InjectedScript::ObjectScope scope(m_inspector, m_session->contextGroupId(), in getProperties()
503 InjectedScript::ObjectScope scope(m_inspector, m_session->contextGroupId(), in releaseObject()
545 InjectedScript::ContextScope scope(m_inspector, m_session->contextGroupId(), in compileScript()
602 InjectedScript::ContextScope scope(m_inspector, m_session->contextGroupId(), in runScript()
Dv8-runtime-agent-impl.h42 class InjectedScript; variable
Dv8-debugger-agent-impl.cc554 InjectedScript::CallFrameScope scope(m_inspector, m_session->contextGroupId(), in restartFrame()
709 InjectedScript::CallFrameScope scope(m_inspector, m_session->contextGroupId(), in evaluateOnCallFrame()
740 InjectedScript::CallFrameScope scope(m_inspector, m_session->contextGroupId(), in setVariableValue()
897 InjectedScript* injectedScript = nullptr; in currentCallFrames()
1093 InjectedScript* injectedScript = nullptr; in didPause()
Dv8-console.cc615 if (InjectedScript* injectedScript = context->getInjectedScript()) in lastEvaluationResultCallback()
627 InjectedScript* injectedScript = context->getInjectedScript(); in inspectImpl()