Lines Matching refs:groupId
174 InspectedContext* V8InspectorImpl::getContext(int groupId, in getContext() argument
176 if (!groupId || !contextId) return nullptr; in getContext()
178 ContextsByGroupMap::const_iterator contextGroupIt = m_contexts.find(groupId); in getContext()
192 int groupId, v8::Maybe<int> contextId) { in contextById() argument
195 client()->ensureDefaultContextInGroup(groupId); in contextById()
227 int groupId = contextGroupId(context); in contextDestroyed() local
228 contextCollected(groupId, contextId); in contextDestroyed()
231 void V8InspectorImpl::contextCollected(int groupId, int contextId) { in contextCollected() argument
234 ConsoleStorageMap::iterator storageIt = m_consoleStorageMap.find(groupId); in contextCollected()
238 InspectedContext* inspectedContext = getContext(groupId, contextId); in contextCollected()
241 forEachSession(groupId, [&inspectedContext](V8InspectorSessionImpl* session) { in contextCollected()
244 discardInspectedContext(groupId, contextId); in contextCollected()
265 int groupId = contextGroupId(context); in exceptionThrown() local
266 if (!groupId || m_muteExceptionsMap[groupId]) return 0; in exceptionThrown()
276 ensureConsoleMessageStorage(groupId)->addMessage(std::move(consoleMessage)); in exceptionThrown()
283 int groupId = contextGroupId(context); in exceptionRevoked() local
284 if (!groupId) return; in exceptionRevoked()
289 ensureConsoleMessageStorage(groupId)->addMessage(std::move(consoleMessage)); in exceptionRevoked()