Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dinjected-script.cc64 class InjectedScript::ProtocolPromiseHandler {
163 InjectedScript::ContextScope scope(session, m_executionContextId); in thenCallback()
188 InjectedScript::ContextScope scope(session, m_executionContextId); in catchCallback()
241 InjectedScript::ContextScope scope(session, m_executionContextId); in sendPromiseCollected()
261 std::unique_ptr<InjectedScript> InjectedScript::create( in create()
312 std::unique_ptr<InjectedScript> injectedScript(new InjectedScript( in create()
323 InjectedScript::InjectedScript(InspectedContext* context, in InjectedScript() function in v8_inspector::InjectedScript
329 InjectedScript::~InjectedScript() { discardEvaluateCallbacks(); } in ~InjectedScript()
331 Response InjectedScript::getProperties( in getProperties()
368 void InjectedScript::releaseObject(const String16& objectId) { in releaseObject()
[all …]
Dinjected-script.h66 class InjectedScript final {
68 static std::unique_ptr<InjectedScript> create(InspectedContext*,
70 ~InjectedScript();
71 static InjectedScript* fromInjectedScriptHost(v8::Isolate* isolate,
125 InjectedScript* injectedScript() const { return m_injectedScript; } in injectedScript()
134 InjectedScript* m_injectedScript;
196 InjectedScript(InspectedContext*, v8::Local<v8::Object>, int sessionId);
220 DISALLOW_COPY_AND_ASSIGN(InjectedScript);
Dinjected-script-source.js160 var InjectedScript = function() class
163 InjectedScriptHost.nullifyPrototype(InjectedScript);
169 InjectedScript.primitiveTypes = {
182 InjectedScript.closureTypes = {
195 InjectedScript.prototype = { class
203 return InjectedScript.primitiveTypes[typeof object] && !this._isHTMLAllCollection(object);
262 …return new InjectedScript.RemoteObject(object, objectGroupName, doNotBind, forceValueType, generat…
269 return new InjectedScript.RemoteObject(description);
687 …return (InjectedScript.closureTypes[obj.type] || "Unknown") + (obj.name ? " (" + obj.name + ")" : …
718 var injectedScript = new InjectedScript();
[all …]
Dinspected-context.h18 class InjectedScript; variable
42 InjectedScript* getInjectedScript(int sessionId);
60 std::unordered_map<int, std::unique_ptr<InjectedScript>> m_injectedScripts;
Dinspected-context.cc107 InjectedScript* InspectedContext::getInjectedScript(int sessionId) { in getInjectedScript()
113 std::unique_ptr<InjectedScript> injectedScript = in createInjectedScript()
114 InjectedScript::create(this, sessionId); in createInjectedScript()
Dv8-runtime-agent-impl.cc90 bool wrapEvaluateResultAsync(InjectedScript* injectedScript, in wrapEvaluateResultAsync()
110 V8InspectorSessionImpl* session, InjectedScript::Scope& scope, in innerCallFunctionOn()
248 InjectedScript::ContextScope scope(m_session, contextId); in evaluate()
304 InjectedScript::ObjectScope scope(m_session, promiseObjectId); in awaitPromise()
339 InjectedScript::ObjectScope scope(m_session, objectId.fromJust()); in callFunctionOn()
362 InjectedScript::ContextScope scope(m_session, contextId); in callFunctionOn()
387 InjectedScript::ObjectScope scope(m_session, objectId); in getProperties()
440 InjectedScript::ObjectScope scope(m_session, objectId); in releaseObject()
490 InjectedScript::ContextScope scope(m_session, contextId); in compileScript()
546 InjectedScript::ContextScope scope(m_session, contextId); in runScript()
[all …]
Dv8-inspector-session-impl.cc199 int contextId, InjectedScript*& injectedScript) { in findInjectedScript()
219 RemoteObjectIdBase* objectId, InjectedScript*& injectedScript) { in findInjectedScript()
231 InjectedScript* injectedScript = context->getInjectedScript(sessionId); in releaseObjectGroup()
261 InjectedScript* injectedScript = nullptr; in unwrapObject()
284 InjectedScript* injectedScript = nullptr; in wrapObject()
296 InjectedScript* injectedScript = nullptr; in wrapTable()
307 InjectedScript* injectedScript = context->getInjectedScript(sessionId); in setCustomObjectFormatterEnabled()
Dv8-inspector-session-impl.h19 class InjectedScript; variable
48 Response findInjectedScript(int contextId, InjectedScript*&);
49 Response findInjectedScript(RemoteObjectIdBase*, InjectedScript*&);
Dv8-debugger-agent-impl.cc254 InjectedScript* injectedScript, in buildScopes()
561 InjectedScript::ObjectScope scope(m_session, functionObjectId); in setBreakpointOnFunctionCall()
906 InjectedScript::CallFrameScope scope(m_session, callFrameId); in restartFrame()
1067 InjectedScript::CallFrameScope scope(m_session, callFrameId); in evaluateOnCallFrame()
1105 InjectedScript::CallFrameScope scope(m_session, callFrameId); in setVariableValue()
1147 InjectedScript::ContextScope scope(m_session, iterator->GetContextId()); in setReturnValue()
1259 InjectedScript* injectedScript = nullptr; in currentCallFrames()
1527 InjectedScript* injectedScript = nullptr; in didPause()
Dv8-runtime-agent-impl.h44 class InjectedScript; variable
Dv8-injected-script-host.cc333 InjectedScript* injectedScript = in bindCallback()
334 InjectedScript::fromInjectedScriptHost(info.GetIsolate(), info.Holder()); in bindCallback()
Dv8-console.cc49 InjectedScript* injectedScript(int sessionId) { in injectedScript()
566 InjectedScript* injectedScript = helper.injectedScript(sessionId); in lastEvaluationResultCallback()
578 InjectedScript* injectedScript = helper.injectedScript(sessionId); in inspectImpl()