/third_party/node/deps/v8/src/inspector/ |
H A D | v8-inspector-impl.cc | 80 return contextGroupId(InspectedContext::contextId(context)); in contextGroupId() 83 int V8InspectorImpl::contextGroupId(int contextId) const { in contextGroupId() 84 auto it = m_contextIdToGroupIdMap.find(contextId); in contextGroupId() 165 int contextId) const { in getContext() 166 if (!groupId || !contextId) return nullptr; in getContext() 171 auto contextIt = contextGroupIt->second->find(contextId); in getContext() 177 InspectedContext* V8InspectorImpl::getContext(int contextId) const { in getContext() 178 return getContext(contextGroupId(contextId), contextId); in getContext() 181 v8::MaybeLocal<v8::Context> V8InspectorImpl::contextById(int contextId) { in contextById() argument 186 uniqueDebuggerId(int contextId) uniqueDebuggerId() argument 194 int contextId = ++m_lastContextId; contextCreated() local 222 int contextId = InspectedContext::contextId(context); contextDestroyed() local 227 contextCollected(int groupId, int contextId) contextCollected() argument 357 discardInspectedContext(int contextGroupId, int contextId) discardInspectedContext() argument [all...] |
H A D | v8-console-message.h | 52 v8::Local<v8::Context> v8Context, int contextId, int groupId, 61 const String16& message, int contextId, v8::Local<v8::Value> exception, 72 void contextDestroyed(int contextId); 121 void contextDestroyed(int contextId); 124 bool shouldReportDeprecationMessage(int contextId, const String16& method); 125 int count(int contextId, const String16& id); 126 bool countReset(int contextId, const String16& id); 127 void time(int contextId, const String16& id); 128 double timeLog(int contextId, const String16& id); 129 double timeEnd(int contextId, cons [all...] |
H A D | v8-console-message.cc | 258 int contextId = m_contextId; in wrapArguments() local 259 if (!m_arguments.size() || !contextId) return nullptr; in wrapArguments() 261 inspector->getContext(contextGroupId, contextId); in wrapArguments() 289 inspectedContext = inspector->getContext(contextGroupId, contextId); in wrapArguments() 301 inspectedContext = inspector->getContext(contextGroupId, contextId); in wrapArguments() 429 v8::Local<v8::Context> v8Context, int contextId, int groupId, in createForConsoleAPI() 446 message->m_contextId = contextId; in createForConsoleAPI() 491 v8::Isolate* isolate, const String16& message, int contextId, in createForException() 499 if (contextId && !exception.IsEmpty()) { in createForException() 500 consoleMessage->m_contextId = contextId; in createForException() 428 createForConsoleAPI( v8::Local<v8::Context> v8Context, int contextId, int groupId, V8InspectorImpl* inspector, double timestamp, ConsoleAPIType type, const std::vector<v8::Local<v8::Value>>& arguments, const String16& consoleContext, std::unique_ptr<V8StackTraceImpl> stackTrace) createForConsoleAPI() argument 487 createForException( double timestamp, const String16& detailedMessage, const String16& url, unsigned lineNumber, unsigned columnNumber, std::unique_ptr<V8StackTraceImpl> stackTrace, int scriptId, v8::Isolate* isolate, const String16& message, int contextId, v8::Local<v8::Value> exception, unsigned exceptionId) createForException() argument 520 contextDestroyed(int contextId) contextDestroyed() argument 599 shouldReportDeprecationMessage( int contextId, const String16& method) shouldReportDeprecationMessage() argument 609 count(int contextId, const String16& id) count() argument 613 time(int contextId, const String16& id) time() argument 617 countReset(int contextId, const String16& id) countReset() argument 625 timeLog(int contextId, const String16& id) timeLog() argument 632 timeEnd(int contextId, const String16& id) timeEnd() argument 641 hasTimer(int contextId, const String16& id) hasTimer() argument 646 contextDestroyed(int contextId) contextDestroyed() argument [all...] |
H A D | v8-runtime-agent-impl.cc | 212 Maybe<String16> uniqueContextId, int* contextId) { in ensureContext() 216 "contextId and uniqueContextId are mutually exclusive"); in ensureContext() 218 *contextId = executionContextId.fromJust(); in ensureContext() 225 *contextId = id; in ensureContext() 232 *contextId = InspectedContext::contextId(defaultContext); in ensureContext() 263 int contextId = 0; in evaluate() local 266 std::move(uniqueContextId), &contextId); in evaluate() 272 InjectedScript::ContextScope scope(m_session, contextId); in evaluate() 405 int contextId in callFunctionOn() local 210 ensureContext(V8InspectorImpl* inspector, int contextGroupId, Maybe<int> executionContextId, Maybe<String16> uniqueContextId, int* contextId) ensureContext() argument 531 int contextId = 0; compileScript() local 585 int contextId = 0; runScript() local 662 int contextId = 0; globalLexicalScopeNames() local 721 int contextId = executionContextId.fromJust(); addBinding() local 770 int contextId = InspectedContext::contextId(isolate->GetCurrentContext()); bindingCallback() local [all...] |
H A D | v8-inspector-impl.h | 68 int contextGroupId(int contextId) const; 86 v8::MaybeLocal<v8::Context> contextById(int contextId) override; 87 V8DebuggerId uniqueDebuggerId(int contextId) override; 88 void contextCollected(int contextGroupId, int contextId); 123 void discardInspectedContext(int contextGroupId, int contextId); 126 InspectedContext* getContext(int groupId, int contextId) const; 127 InspectedContext* getContext(int contextId) const;
|
H A D | inspected-context.cc | 20 int groupId, int contextId) in WeakCallbackData() 24 m_contextId(contextId) {} in WeakCallbackData() 51 const V8ContextInfo& info, int contextId) in InspectedContext() 54 m_contextId(contextId), in InspectedContext() 60 v8::debug::SetContextId(info.context, contextId); in InspectedContext() 97 int InspectedContext::contextId(v8::Local<v8::Context> context) { in contextId() function in v8_inspector::InspectedContext 19 WeakCallbackData(InspectedContext* context, V8InspectorImpl* inspector, int groupId, int contextId) WeakCallbackData() argument 50 InspectedContext(V8InspectorImpl* inspector, const V8ContextInfo& info, int contextId) InspectedContext() argument
|
H A D | inspected-context.h | 39 static int contextId(v8::Local<v8::Context>); 42 int contextId() const { return m_contextId; } in contextId() function in v8_inspector::InspectedContext 65 InspectedContext(V8InspectorImpl*, const V8ContextInfo&, int contextId);
|
H A D | v8-debugger.cc | 148 int contextId; in getCompiledScripts() local 149 if (!script->ContextId().To(&contextId)) continue; in getCompiledScripts() 150 if (m_inspector->contextGroupId(contextId) != contextGroupId) continue; in getCompiledScripts() 425 InspectedContext::contextId(pausedContext), exception, in handleProgramBreak() 482 int contextId; in ScriptCompiled() local 483 if (!script->ContextId().To(&contextId)) return; in ScriptCompiled() 489 m_inspector->contextGroupId(contextId), in ScriptCompiled() 559 int contextId; in IsFunctionBlackboxed() local 560 if (!script->ContextId().To(&contextId)) return false; in IsFunctionBlackboxed() 565 m_inspector->contextGroupId(contextId), in IsFunctionBlackboxed() 578 int contextId; ShouldBeSkipped() local 1168 int contextId = InspectedContext::contextId(context); addInternalObject() local [all...] |
H A D | custom-preview.cc | 31 int contextId = InspectedContext::contextId(context); in reportError() local 32 int groupId = inspector->contextGroupId(contextId); in reportError() 43 context, contextId, groupId, inspector, in reportError() 61 inspector->getContext(InspectedContext::contextId(context)); in getInjectedScript()
|
H A D | v8-inspector-session-impl.cc | 85 return InspectedContext::contextId(context); in executionContextId() 242 int contextId, InjectedScript*& injectedScript) { in findInjectedScript() 245 m_inspector->getContext(m_contextGroupId, contextId); in findInjectedScript() 261 return findInjectedScript(objectId->contextId(), injectedScript); in findInjectedScript() 326 findInjectedScript(InspectedContext::contextId(context), injectedScript); in wrapObject() 340 findInjectedScript(InspectedContext::contextId(context), injectedScript); in wrapTable() 241 findInjectedScript( int contextId, InjectedScript*& injectedScript) findInjectedScript() argument
|
H A D | v8-debugger-agent-impl.cc | 788 int contextId = it->second->executionContextId(); in getPossibleBreakpoints() local 789 InspectedContext* inspected = m_inspector->getContext(contextId); in getPossibleBreakpoints() 833 int contextId = script->executionContextId(); in continueToLocation() local 834 InspectedContext* inspected = m_inspector->getContext(contextId); in continueToLocation() 964 int contextId = script->executionContextId(); in setBreakpointImpl() local 965 InspectedContext* inspected = m_inspector->getContext(contextId); in setBreakpointImpl() 1028 int contextId = it->second->executionContextId(); in setScriptSource() local 1029 InspectedContext* inspected = m_inspector->getContext(contextId); in setScriptSource() 1447 int contextId = iterator->GetContextId(); in currentCallFrames() local 1449 if (contextId) m_sessio in currentCallFrames() 1596 int contextId = script->executionContextId(); didParseSource() local 1786 didPause( int contextId, v8::Local<v8::Value> exception, const std::vector<v8::debug::BreakpointId>& hitBreakpoints, v8::debug::ExceptionType exceptionType, bool isUncaught, v8::debug::BreakReasons breakReasons) didPause() argument [all...] |
H A D | remote-object-id.h | 19 int contextId() const { return m_injectedScriptId; } in contextId() function in v8_inspector::RemoteObjectIdBase
|
H A D | v8-console.cc | 47 m_contextId(InspectedContext::contextId(m_context)), in ConsoleHelper() 53 int contextId() const { return m_contextId; } in contextId() function in v8_inspector::__anon14706::ConsoleHelper 322 helper.consoleMessageStorage()->count(helper.contextId(), identifier); in Count() 341 if (!helper.consoleMessageStorage()->countReset(helper.contextId(), in CountReset() 403 if (helper.consoleMessageStorage()->hasTimer(helper.contextId(), timerId)) { in timeFunction() 410 helper.consoleMessageStorage()->time(helper.contextId(), timerId); in timeFunction() 421 if (!helper.consoleMessageStorage()->hasTimer(helper.contextId(), timerId)) { in timeEndFunction() 433 helper.consoleMessageStorage()->timeLog(helper.contextId(), title); in timeEndFunction() 436 helper.consoleMessageStorage()->timeEnd(helper.contextId(), title); in timeEndFunction() 738 helper.contextId()); in inspectImpl() [all...] |
H A D | v8-inspector-session-impl.h | 56 Response findInjectedScript(int contextId, InjectedScript*&);
|
H A D | injected-script.cc | 663 m_context->contextId(), objectGroup, wrapMode, in addPromiseCallback() 734 if (remoteObjectId->contextId() != m_context->contextId() || in resolveCallArgument() 1031 m_context->contextId(), id); in bindObject() 1046 inspector->getContext(InspectedContext::contextId(context)); in bindRemoteObjectIfNeeded()
|
H A D | v8-debugger-agent-impl.h | 154 void didPause(int contextId, v8::Local<v8::Value> exception,
|
H A D | v8-heap-profiler-agent-impl.cc | 65 InspectedContext::contextId(creationContext));
|
H A D | value-mirror.cc | 181 int contextId = InspectedContext::contextId(context); in v8InternalValueTypeFrom() local 182 InspectedContext* inspectedContext = inspector->getContext(contextId); in v8InternalValueTypeFrom()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
H A D | FrameCapture.cpp | 172 std::ostream &operator<<(std::ostream &os, gl::ContextID contextId) in operator <<() argument 174 os << static_cast<int>(contextId.value); in operator <<() 186 : contextId(contextIdIn), captureLabel(captureLabelIn) in FmtCapturePrefix() 188 gl::ContextID contextId; member 203 if (fmt.contextId == kSharedContextId) in operator <<() 207 else if (fmt.contextId != kNoContextId) in operator <<() 209 os << "_context" << fmt.contextId; in operator <<() 229 : contextId(contextIdIn), frameIndex(frameIndexIn), partId(partIdIn) in FmtReplayFunction() 231 gl::ContextID contextId; member 240 if (fmt.contextId in operator <<() 266 gl::ContextID contextId; global() member 311 gl::ContextID contextId; global() member 345 gl::ContextID contextId; global() member 813 SaveBinaryData(bool compression, const std::string &outDir, gl::ContextID contextId, const std::string &captureLabel, const std::vector<uint8_t> &binaryData) SaveBinaryData() argument 850 WriteInitReplayCall(bool compression, std::ostream &out, gl::ContextID contextId, const std::string &captureLabel, size_t maxClientArraySize, size_t readBufferSize, const PackedEnumMap<ResourceIDType, uint32_t> &maxIDs) WriteInitReplayCall() argument 6095 const gl::ContextID contextId = context->id(); writeJSON() local 6163 const gl::ContextID contextId = context->id(); writeCppReplayIndexFiles() local [all...] |
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-inspector.h | 337 virtual v8::MaybeLocal<v8::Context> contextById(int contextId) = 0; 338 virtual V8DebuggerId uniqueDebuggerId(int contextId) = 0;
|
/third_party/node/deps/v8/include/ |
H A D | v8-inspector.h | 322 virtual v8::MaybeLocal<v8::Context> contextById(int contextId) = 0; 323 virtual V8DebuggerId uniqueDebuggerId(int contextId) = 0;
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglImageFormatTests.cpp | 155 ImageApi (const Library& egl, int contextId, EGLDisplay display, EGLSurface surface); 165 ImageApi::ImageApi (const Library& egl, int contextId, EGLDisplay display, EGLSurface surface) in ImageApi() argument 167 , m_contextId (contextId) in ImageApi() 303 GLESImageApi (const Library& egl, const glw::Functions& gl, int contextId, tcu::TestLog& log, EGLDisplay display, EGLSurface surface, EGLConfig config, EGLint apiVersion); 313 GLESImageApi::GLESImageApi (const Library& egl, const glw::Functions& gl, int contextId, tcu::TestLog& log, EGLDisplay display, EGLSurface surface, EGLConfig config, EGLint apiVersion) in GLESImageApi() argument 314 : ImageApi (egl, contextId, display, surface) in GLESImageApi()
|
/third_party/node/lib/internal/repl/ |
H A D | utils.js | 311 contextId: repl[contextSymbol],
|
/third_party/cups-filters/filter/ |
H A D | rastertopdf.cpp | 132 static void lcmsErrorHandler(cmsContext contextId, cmsUInt32Number ErrorCode, in lcmsErrorHandler() argument
|
/third_party/node/lib/internal/debugger/ |
H A D | inspect_repl.js | 1151 contextId: 1,
|