Home
last modified time | relevance | path

Searched refs:executionContextId (Results 1 - 13 of 13) sorted by relevance

/third_party/node/deps/v8/src/inspector/
H A Dv8-runtime-agent-impl.h72 Maybe<int> executionContextId, Maybe<bool> returnByValue,
88 Maybe<bool> awaitPromise, Maybe<int> executionContextId,
110 bool persistScript, Maybe<int> executionContextId,
113 void runScript(const String16&, Maybe<int> executionContextId,
122 Maybe<int> executionContextId,
129 Response addBinding(const String16& name, Maybe<int> executionContextId,
142 int executionContextId);
151 int executionContextId);
H A Dv8-runtime-agent-impl.cc211 Maybe<int> executionContextId, in ensureContext()
213 if (executionContextId.isJust()) { in ensureContext()
218 *contextId = executionContextId.fromJust(); in ensureContext()
254 Maybe<int> executionContextId, Maybe<bool> returnByValue, in evaluate()
265 std::move(executionContextId), in evaluate()
372 Maybe<int> executionContextId, Maybe<String16> objectGroup, in callFunctionOn()
375 if (objectId.isJust() && executionContextId.isJust()) { in callFunctionOn()
377 "ObjectId must not be specified together with executionContextId")); in callFunctionOn()
380 if (!objectId.isJust() && !executionContextId.isJust()) { in callFunctionOn()
382 "Either ObjectId or executionContextId mus in callFunctionOn()
210 ensureContext(V8InspectorImpl* inspector, int contextGroupId, Maybe<int> executionContextId, Maybe<String16> uniqueContextId, int* contextId) ensureContext() argument
251 evaluate( const String16& expression, Maybe<String16> objectGroup, Maybe<bool> includeCommandLineAPI, Maybe<bool> silent, Maybe<int> executionContextId, Maybe<bool> returnByValue, Maybe<bool> generatePreview, Maybe<bool> userGesture, Maybe<bool> maybeAwaitPromise, Maybe<bool> throwOnSideEffect, Maybe<double> timeout, Maybe<bool> disableBreaks, Maybe<bool> maybeReplMode, Maybe<bool> allowUnsafeEvalBlockedByCSP, Maybe<String16> uniqueContextId, Maybe<bool> generateWebDriverValue, std::unique_ptr<EvaluateCallback> callback) evaluate() argument
367 callFunctionOn( const String16& expression, Maybe<String16> objectId, Maybe<protocol::Array<protocol::Runtime::CallArgument>> optionalArguments, Maybe<bool> silent, Maybe<bool> returnByValue, Maybe<bool> generatePreview, Maybe<bool> userGesture, Maybe<bool> awaitPromise, Maybe<int> executionContextId, Maybe<String16> objectGroup, Maybe<bool> throwOnSideEffect, Maybe<bool> generateWebDriverValue, std::unique_ptr<CallFunctionOnCallback> callback) callFunctionOn() argument
525 compileScript( const String16& expression, const String16& sourceURL, bool persistScript, Maybe<int> executionContextId, Maybe<String16>* scriptId, Maybe<protocol::Runtime::ExceptionDetails>* exceptionDetails) compileScript() argument
567 runScript( const String16& scriptId, Maybe<int> executionContextId, Maybe<String16> objectGroup, Maybe<bool> silent, Maybe<bool> includeCommandLineAPI, Maybe<bool> returnByValue, Maybe<bool> generatePreview, Maybe<bool> awaitPromise, std::unique_ptr<RunScriptCallback> callback) runScript() argument
659 globalLexicalScopeNames( Maybe<int> executionContextId, std::unique_ptr<protocol::Array<String16>>* outNames) globalLexicalScopeNames() argument
713 addBinding(const String16& name, Maybe<int> executionContextId, Maybe<String16> executionContextName) addBinding() argument
852 bindingCalled(const String16& name, const String16& payload, int executionContextId) bindingCalled() argument
980 inspect( std::unique_ptr<protocol::Runtime::RemoteObject> objectToInspect, std::unique_ptr<protocol::DictionaryValue> hints, int executionContextId) inspect() argument
985 executionContextId); inspect() local
[all...]
H A Dv8-inspector-session-impl.cc84 int V8ContextInfo::executionContextId(v8::Local<v8::Context> context) { in executionContextId() function in v8_inspector::V8ContextInfo
161 V8InspectorSessionImpl::initializeCommandLineAPIScope(int executionContextId) { in initializeCommandLineAPIScope() argument
163 std::make_unique<InjectedScript::ContextScope>(this, executionContextId); in initializeCommandLineAPIScope()
H A Dv8-debugger-script.h77 int executionContextId() const { return m_executionContextId; } in executionContextId() function in v8_inspector::V8DebuggerScript
H A Dinjected-script.cc75 int executionContextId, const String16& objectGroup, in add()
93 session, executionContextId, objectGroup, wrapMode, replMode, callback, in add()
144 int executionContextId, const String16& objectGroup, in ProtocolPromiseHandler()
151 m_executionContextId(executionContextId), in ProtocolPromiseHandler()
973 int executionContextId) in ContextScope()
975 m_executionContextId(executionContextId) {} in ContextScope()
73 add(V8InspectorSessionImpl* session, v8::Local<v8::Context> context, v8::Local<v8::Value> value, int executionContextId, const String16& objectGroup, WrapMode wrapMode, bool replMode, EvaluateCallback* callback) add() argument
143 ProtocolPromiseHandler(V8InspectorSessionImpl* session, int executionContextId, const String16& objectGroup, WrapMode wrapMode, bool replMode, EvaluateCallback* callback, v8::MaybeLocal<v8::Promise> maybeEvaluationResult) ProtocolPromiseHandler() argument
972 ContextScope(V8InspectorSessionImpl* session, int executionContextId) ContextScope() argument
H A Dv8-inspector-session-impl.h54 initializeCommandLineAPIScope(int executionContextId) override;
H A Dinjected-script.h182 ContextScope(V8InspectorSessionImpl*, int executionContextId);
H A Dv8-debugger-agent-impl.cc788 int contextId = it->second->executionContextId(); in getPossibleBreakpoints()
833 int contextId = script->executionContextId(); in continueToLocation()
964 int contextId = script->executionContextId(); in setBreakpointImpl()
1028 int contextId = it->second->executionContextId(); in setScriptSource()
1596 int contextId = script->executionContextId(); in didParseSource()
/third_party/node/test/parallel/
H A Dtest-inspector-waiting-for-disconnect.js11 notification.params.executionContextId === 1;
H A Dtest-inspector-contexts.js73 assert.strictEqual(contextDestroyed.params.executionContextId, id,
/third_party/node/deps/v8/include/v8-include/
H A Dv8-inspector.h102 static int executionContextId(v8::Local<v8::Context> context);
189 initializeCommandLineAPIScope(int executionContextId) = 0;
/third_party/node/deps/v8/include/
H A Dv8-inspector.h102 static int executionContextId(v8::Local<v8::Context> context);
180 initializeCommandLineAPIScope(int executionContextId) = 0;
/third_party/node/test/common/
H A Dinspector-helper.js307 notification.params.executionContextId === 1;

Completed in 13 milliseconds