• Home
  • Raw
  • Download

Lines Matching refs:contextId

204                        Maybe<int> executionContextId, int* contextId) {  in ensureContext()  argument
206 *contextId = executionContextId.fromJust(); in ensureContext()
213 *contextId = InspectedContext::contextId(defaultContext); in ensureContext()
240 int contextId = 0; in evaluate() local
242 std::move(executionContextId), &contextId); in evaluate()
248 InjectedScript::ContextScope scope(m_session, contextId); in evaluate()
354 int contextId = 0; in callFunctionOn() local
357 std::move(executionContextId.fromJust()), &contextId); in callFunctionOn()
362 InjectedScript::ContextScope scope(m_session, contextId); in callFunctionOn()
486 int contextId = 0; in compileScript() local
488 std::move(executionContextId), &contextId); in compileScript()
490 InjectedScript::ContextScope scope(m_session, contextId); in compileScript()
538 int contextId = 0; in runScript() local
540 std::move(executionContextId), &contextId); in runScript()
546 InjectedScript::ContextScope scope(m_session, contextId); in runScript()
613 int contextId = 0; in globalLexicalScopeNames() local
615 std::move(executionContextId), &contextId); in globalLexicalScopeNames()
618 InjectedScript::ContextScope scope(m_session, contextId); in globalLexicalScopeNames()
663 int contextId = executionContextId.fromJust(); in addBinding() local
665 m_inspector->getContext(m_session->contextGroupId(), contextId); in addBinding()
692 int contextId = InspectedContext::contextId(isolate->GetCurrentContext()); in bindingCallback() local
693 int contextGroupId = inspector->contextGroupId(contextId); in bindingCallback()
702 [&name, &payload, &contextId](V8InspectorSessionImpl* session) { in bindingCallback()
703 session->runtimeAgent()->bindingCalled(name, payload, contextId); in bindingCallback()
815 .setId(context->contextId()) in reportExecutionContextCreated()
829 m_frontend.executionContextDestroyed(context->contextId()); in reportExecutionContextDestroyed()