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.java2659 AuthoritySyncStats authoritySyncStats = authorityMap.get(authorityName); in dumpRecentHistory() local
2660 if (authoritySyncStats == null) { in dumpRecentHistory()
2661 authoritySyncStats = new AuthoritySyncStats(authorityName); in dumpRecentHistory()
2662 authorityMap.put(authorityName, authoritySyncStats); in dumpRecentHistory()
2664 authoritySyncStats.elapsedTime += elapsedTime; in dumpRecentHistory()
2665 authoritySyncStats.times++; in dumpRecentHistory()
2666 final Map<String, AccountSyncStats> accountMap = authoritySyncStats.accountMap; in dumpRecentHistory()
2709 for (AuthoritySyncStats authoritySyncStats : sortedAuthorities) { in dumpRecentHistory()
2710 String name = authoritySyncStats.name; in dumpRecentHistory()
2716 elapsedTime = authoritySyncStats.elapsedTime; in dumpRecentHistory()
[all …]