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.java2440 AuthoritySyncStats authoritySyncStats = authorityMap.get(authorityName); in dumpRecentHistory() local
2441 if (authoritySyncStats == null) { in dumpRecentHistory()
2442 authoritySyncStats = new AuthoritySyncStats(authorityName); in dumpRecentHistory()
2443 authorityMap.put(authorityName, authoritySyncStats); in dumpRecentHistory()
2445 authoritySyncStats.elapsedTime += elapsedTime; in dumpRecentHistory()
2446 authoritySyncStats.times++; in dumpRecentHistory()
2447 final Map<String, AccountSyncStats> accountMap = authoritySyncStats.accountMap; in dumpRecentHistory()
2490 for (AuthoritySyncStats authoritySyncStats : sortedAuthorities) { in dumpRecentHistory()
2491 String name = authoritySyncStats.name; in dumpRecentHistory()
2497 elapsedTime = authoritySyncStats.elapsedTime; in dumpRecentHistory()
[all …]