Home
last modified time | relevance | path

Searched refs:authoritySyncStats (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/content/
DSyncManager.java2468 AuthoritySyncStats authoritySyncStats = authorityMap.get(authorityName); in dumpRecentHistory() local
2469 if (authoritySyncStats == null) { in dumpRecentHistory()
2470 authoritySyncStats = new AuthoritySyncStats(authorityName); in dumpRecentHistory()
2471 authorityMap.put(authorityName, authoritySyncStats); in dumpRecentHistory()
2473 authoritySyncStats.elapsedTime += elapsedTime; in dumpRecentHistory()
2474 authoritySyncStats.times++; in dumpRecentHistory()
2475 final Map<String, AccountSyncStats> accountMap = authoritySyncStats.accountMap; in dumpRecentHistory()
2518 for (AuthoritySyncStats authoritySyncStats : sortedAuthorities) { in dumpRecentHistory()
2519 String name = authoritySyncStats.name; in dumpRecentHistory()
2525 elapsedTime = authoritySyncStats.elapsedTime; in dumpRecentHistory()
[all …]