Lines Matching refs:contextId
249 int contextId = m_contextId; in wrapArguments() local
250 if (!m_arguments.size() || !contextId) return nullptr; in wrapArguments()
252 inspector->getContext(contextGroupId, contextId); in wrapArguments()
268 inspectedContext = inspector->getContext(contextGroupId, contextId); in wrapArguments()
279 inspectedContext = inspector->getContext(contextGroupId, contextId); in wrapArguments()
376 v8::Local<v8::Context> v8Context, int contextId, int groupId, in createForConsoleAPI() argument
393 message->m_contextId = contextId; in createForConsoleAPI()
434 v8::Isolate* isolate, const String16& message, int contextId, in createForException() argument
442 if (contextId && !exception.IsEmpty()) { in createForException()
443 consoleMessage->m_contextId = contextId; in createForException()
463 void V8ConsoleMessage::contextDestroyed(int contextId) { in contextDestroyed() argument
464 if (contextId != m_contextId) return; in contextDestroyed()
520 int contextId, const String16& method) { in shouldReportDeprecationMessage() argument
522 m_data[contextId].m_reportedDeprecationMessages; in shouldReportDeprecationMessage()
529 int V8ConsoleMessageStorage::count(int contextId, const String16& id) { in count() argument
530 return ++m_data[contextId].m_count[id]; in count()
533 void V8ConsoleMessageStorage::time(int contextId, const String16& id) { in time() argument
534 m_data[contextId].m_time[id] = m_inspector->client()->currentTimeMS(); in time()
537 bool V8ConsoleMessageStorage::countReset(int contextId, const String16& id) { in countReset() argument
538 std::map<String16, int>& count_map = m_data[contextId].m_count; in countReset()
545 double V8ConsoleMessageStorage::timeEnd(int contextId, const String16& id) { in timeEnd() argument
546 std::map<String16, double>& time = m_data[contextId].m_time; in timeEnd()
554 bool V8ConsoleMessageStorage::hasTimer(int contextId, const String16& id) { in hasTimer() argument
555 const std::map<String16, double>& time = m_data[contextId].m_time; in hasTimer()
559 void V8ConsoleMessageStorage::contextDestroyed(int contextId) { in contextDestroyed() argument
562 m_messages[i]->contextDestroyed(contextId); in contextDestroyed()
565 auto it = m_data.find(contextId); in contextDestroyed()
566 if (it != m_data.end()) m_data.erase(contextId); in contextDestroyed()