Searched refs:totalStats (Results 1 – 6 of 6) sorted by relevance
121 public final Stats totalStats = new Stats(); field in SyncStatusInfo178 parcel.writeLong(totalStats.totalElapsedTime); in writeToParcel()179 parcel.writeInt(totalStats.numSyncs); in writeToParcel()180 parcel.writeInt(totalStats.numSourcePoll); in writeToParcel()181 parcel.writeInt(totalStats.numSourceOther); in writeToParcel()182 parcel.writeInt(totalStats.numSourceLocal); in writeToParcel()183 parcel.writeInt(totalStats.numSourceUser); in writeToParcel()207 parcel.writeInt(totalStats.numSourcePeriodic); in writeToParcel()210 parcel.writeInt(totalStats.numSourceFeed); in writeToParcel()211 parcel.writeInt(totalStats.numFailures); in writeToParcel()[all …]
318 Entry totalStats = null; in addStatsToResults() local329 if (totalStats == null || statsEntry.set == NetworkStats.SET_ALL) { in addStatsToResults()330 totalStats = statsEntry; in addStatsToResults()332 totalStats.rxBytes += statsEntry.rxBytes; in addStatsToResults()333 totalStats.txBytes += statsEntry.txBytes; in addStatsToResults()337 results.putInt(label + "uid", totalStats.uid); in addStatsToResults()338 results.putLong(label + "tx", totalStats.txBytes); in addStatsToResults()339 results.putLong(label + "rx", totalStats.rxBytes); in addStatsToResults()
124 populateStats(ss.totalStats, r); in populateStatus()174 verifyStats(ss.totalStats, ssOther.totalStats); in verifyStatus()
1227 status.totalStats.numSyncs++; in stopSyncEvent()1229 status.totalStats.totalElapsedTime += elapsedTime; in stopSyncEvent()1233 status.totalStats.numSourceLocal++; in stopSyncEvent()1237 status.totalStats.numSourcePoll++; in stopSyncEvent()1241 status.totalStats.numSourceUser++; in stopSyncEvent()1245 status.totalStats.numSourceOther++; in stopSyncEvent()1249 status.totalStats.numSourcePeriodic++; in stopSyncEvent()1253 status.totalStats.numSourceFeed++; in stopSyncEvent()1284 status.totalStats.numFailures++; in stopSyncEvent()1293 status.totalStats.numCancels++; in stopSyncEvent()[all …]
2324 c.accept("Total", status.totalStats, (i) -> Integer.toString(i), row); in dumpSyncState()
17049 Landroid/content/SyncStatusInfo;->totalStats:Landroid/content/SyncStatusInfo$Stats;