| /third_party/node/deps/v8/src/inspector/ |
| D | injected-script.cc | 71 class InjectedScript::ProtocolPromiseHandler { 182 InjectedScript::ContextScope scope(session, m_executionContextId); in thenCallback() 227 InjectedScript::ContextScope scope(session, m_executionContextId); in catchCallback() 320 InjectedScript::ContextScope scope(session, m_executionContextId); in sendPromiseCollected() 341 InjectedScript::InjectedScript(InspectedContext* context, int sessionId) in InjectedScript() function in v8_inspector::InjectedScript 344 InjectedScript::~InjectedScript() { discardEvaluateCallbacks(); } in ~InjectedScript() 361 Response InjectedScript::getProperties( in getProperties() 443 Response InjectedScript::getInternalAndPrivateProperties( in getInternalAndPrivateProperties() 531 void InjectedScript::releaseObject(const String16& objectId) { in releaseObject() 537 Response InjectedScript::wrapObject( in wrapObject() [all …]
|
| D | injected-script.h | 69 class InjectedScript final { 71 InjectedScript(InspectedContext*, int sessionId); 72 ~InjectedScript(); 73 InjectedScript(const InjectedScript&) = delete; 74 InjectedScript& operator=(const InjectedScript&) = delete; 150 InjectedScript* injectedScript() const { return m_injectedScript; } in injectedScript() 160 InjectedScript* m_injectedScript;
|
| D | inspected-context.h | 26 class InjectedScript; variable 55 InjectedScript* getInjectedScript(int sessionId); 56 InjectedScript* createInjectedScript(int sessionId); 78 std::unordered_map<int, std::unique_ptr<InjectedScript>> m_injectedScripts;
|
| D | inspected-context.cc | 120 InjectedScript* InspectedContext::getInjectedScript(int sessionId) { in getInjectedScript() 125 InjectedScript* InspectedContext::createInjectedScript(int sessionId) { in createInjectedScript() 126 std::unique_ptr<InjectedScript> injectedScript = in createInjectedScript() 127 std::make_unique<InjectedScript>(this, sessionId); in createInjectedScript()
|
| D | v8-inspector-session-impl.cc | 163 std::make_unique<InjectedScript::ContextScope>(this, executionContextId); in initializeCommandLineAPIScope() 242 int contextId, InjectedScript*& injectedScript) { in findInjectedScript() 258 RemoteObjectIdBase* objectId, InjectedScript*& injectedScript) { in findInjectedScript() 272 InjectedScript* injectedScript = context->getInjectedScript(sessionId); in releaseObjectGroup() 303 InjectedScript* injectedScript = nullptr; in unwrapObject() 325 InjectedScript* injectedScript = nullptr; in wrapObject() 339 InjectedScript* injectedScript = nullptr; in wrapTable() 350 InjectedScript* injectedScript = context->getInjectedScript(sessionId); in setCustomObjectFormatterEnabled()
|
| D | v8-runtime-agent-impl.cc | 96 bool wrapEvaluateResultAsync(InjectedScript* injectedScript, in wrapEvaluateResultAsync() 116 V8InspectorSessionImpl* session, InjectedScript::Scope& scope, in innerCallFunctionOn() 272 InjectedScript::ContextScope scope(m_session, contextId); in evaluate() 347 InjectedScript::ObjectScope scope(m_session, promiseObjectId); in awaitPromise() 391 InjectedScript::ObjectScope scope(m_session, objectId.fromJust()); in callFunctionOn() 413 InjectedScript::ContextScope scope(m_session, contextId); in callFunctionOn() 442 InjectedScript::ObjectScope scope(m_session, objectId); in getProperties() 478 InjectedScript::ObjectScope scope(m_session, objectId); in releaseObject() 536 InjectedScript::ContextScope scope(m_session, contextId); in compileScript() 594 InjectedScript::ContextScope scope(m_session, contextId); in runScript() [all …]
|
| D | v8-inspector-session-impl.h | 20 class InjectedScript; variable 56 Response findInjectedScript(int contextId, InjectedScript*&); 57 Response findInjectedScript(RemoteObjectIdBase*, InjectedScript*&);
|
| D | v8-inspector-impl.h | 142 explicit EvaluateScope(const InjectedScript::Scope& scope); 151 const InjectedScript::Scope& m_scope;
|
| D | custom-preview.cc | 55 InjectedScript* getInjectedScript(v8::Local<v8::Context> context, in getInjectedScript() 115 InjectedScript* injectedScript = getInjectedScript(context, sessionId); in substituteObjectTags() 390 InjectedScript* injectedScript = getInjectedScript(context, sessionId); in generateCustomPreview()
|
| D | v8-runtime-agent-impl.h | 48 class InjectedScript; variable
|
| D | v8-debugger-agent-impl.cc | 280 InjectedScript* injectedScript, in buildScopes() 640 InjectedScript::ObjectScope scope(m_session, functionObjectId); in setBreakpointOnFunctionCall() 1260 InjectedScript::CallFrameScope scope(m_session, callFrameId); in evaluateOnCallFrame() 1300 InjectedScript::CallFrameScope scope(m_session, callFrameId); in setVariableValue() 1343 InjectedScript::ContextScope scope(m_session, iterator->GetContextId()); in setReturnValue() 1448 InjectedScript* injectedScript = nullptr; in currentCallFrames() 1802 InjectedScript* injectedScript = nullptr; in didPause()
|
| D | v8-console.cc | 56 InjectedScript* injectedScript(int sessionId) { in injectedScript() 710 InjectedScript* injectedScript = helper.injectedScript(sessionId); in lastEvaluationResultCallback() 722 InjectedScript* injectedScript = helper.injectedScript(sessionId); in inspectImpl()
|
| D | v8-inspector-impl.cc | 423 const InjectedScript::Scope& scope) in EvaluateScope()
|
| /third_party/chromium/patch/ |
| D | 0003-ohos-1115.patch | 260439 @@ -897,6 +897,11 @@ Response InjectedScript::Scope::initialize() { 260440 void InjectedScript::Scope::installCommandLineAPI() {
|