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.java2457 AuthoritySyncStats authoritySyncStats = authorityMap.get(authorityName); in dumpRecentHistory() local
2458 if (authoritySyncStats == null) { in dumpRecentHistory()
2459 authoritySyncStats = new AuthoritySyncStats(authorityName); in dumpRecentHistory()
2460 authorityMap.put(authorityName, authoritySyncStats); in dumpRecentHistory()
2462 authoritySyncStats.elapsedTime += elapsedTime; in dumpRecentHistory()
2463 authoritySyncStats.times++; in dumpRecentHistory()
2464 final Map<String, AccountSyncStats> accountMap = authoritySyncStats.accountMap; in dumpRecentHistory()
2507 for (AuthoritySyncStats authoritySyncStats : sortedAuthorities) { in dumpRecentHistory()
2508 String name = authoritySyncStats.name; in dumpRecentHistory()
2514 elapsedTime = authoritySyncStats.elapsedTime; in dumpRecentHistory()
[all …]