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.java2244 AuthoritySyncStats authoritySyncStats = authorityMap.get(authorityName); in dumpRecentHistory() local
2245 if (authoritySyncStats == null) { in dumpRecentHistory()
2246 authoritySyncStats = new AuthoritySyncStats(authorityName); in dumpRecentHistory()
2247 authorityMap.put(authorityName, authoritySyncStats); in dumpRecentHistory()
2249 authoritySyncStats.elapsedTime += elapsedTime; in dumpRecentHistory()
2250 authoritySyncStats.times++; in dumpRecentHistory()
2251 final Map<String, AccountSyncStats> accountMap = authoritySyncStats.accountMap; in dumpRecentHistory()
2294 for (AuthoritySyncStats authoritySyncStats : sortedAuthorities) { in dumpRecentHistory()
2295 String name = authoritySyncStats.name; in dumpRecentHistory()
2301 elapsedTime = authoritySyncStats.elapsedTime; in dumpRecentHistory()
[all …]