MCPcopy Create free account
hub / github.com/KDE/kdevelop / printAllStatistics

Method printAllStatistics

kdevplatform/serialization/itemrepositoryregistry.cpp:332–342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

330}
331
332void ItemRepositoryRegistry::printAllStatistics() const
333{
334 Q_D(const ItemRepositoryRegistry);
335
336 QMutexLocker lock(&d->m_mutex);
337 for (auto* repository : std::as_const(d->m_repositories)) {
338 std::scoped_lock repoLock(*repository);
339 qCDebug(SERIALIZATION) << "statistics in" << repository->repositoryName() << ":";
340 qCDebug(SERIALIZATION) << repository->printStatistics();
341 }
342}
343
344int ItemRepositoryRegistry::finalCleanup()
345{

Callers 1

testImportCacheMethod · 0.80

Calls 2

repositoryNameMethod · 0.80
printStatisticsMethod · 0.45

Tested by 1

testImportCacheMethod · 0.64