Home
last modified time | relevance | path

Searched refs:totalStats (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/content/
DSyncStatusInfo.java116 public final Stats totalStats = new Stats(); field in SyncStatusInfo
162 parcel.writeLong(totalStats.totalElapsedTime); in writeToParcel()
163 parcel.writeInt(totalStats.numSyncs); in writeToParcel()
164 parcel.writeInt(totalStats.numSourcePoll); in writeToParcel()
165 parcel.writeInt(totalStats.numSourceOther); in writeToParcel()
166 parcel.writeInt(totalStats.numSourceLocal); in writeToParcel()
167 parcel.writeInt(totalStats.numSourceUser); in writeToParcel()
191 parcel.writeInt(totalStats.numSourcePeriodic); in writeToParcel()
194 parcel.writeInt(totalStats.numSourceFeed); in writeToParcel()
195 parcel.writeInt(totalStats.numFailures); in writeToParcel()
[all …]
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
DBandwidthTest.java311 Entry totalStats = null; in addStatsToResults() local
322 if (totalStats == null || statsEntry.set == NetworkStats.SET_ALL) { in addStatsToResults()
323 totalStats = statsEntry; in addStatsToResults()
325 totalStats.rxBytes += statsEntry.rxBytes; in addStatsToResults()
326 totalStats.txBytes += statsEntry.txBytes; in addStatsToResults()
330 results.putInt(label + "uid", totalStats.uid); in addStatsToResults()
331 results.putLong(label + "tx", totalStats.txBytes); in addStatsToResults()
332 results.putLong(label + "rx", totalStats.rxBytes); in addStatsToResults()
/frameworks/base/core/java/android/view/textclassifier/
DGenerateLinksLogger.java78 final LinkifyStats totalStats = new LinkifyStats(); in logGenerateLinks() local
88 totalStats.countLink(link); in logGenerateLinks()
93 writeStats(callId, callingPackageName, null, totalStats, text, latencyMs); in logGenerateLinks()
/frameworks/base/services/core/java/com/android/server/content/
DSyncStorageEngine.java1191 status.totalStats.numSyncs++; in stopSyncEvent()
1193 status.totalStats.totalElapsedTime += elapsedTime; in stopSyncEvent()
1197 status.totalStats.numSourceLocal++; in stopSyncEvent()
1201 status.totalStats.numSourcePoll++; in stopSyncEvent()
1205 status.totalStats.numSourceUser++; in stopSyncEvent()
1209 status.totalStats.numSourceOther++; in stopSyncEvent()
1213 status.totalStats.numSourcePeriodic++; in stopSyncEvent()
1217 status.totalStats.numSourceFeed++; in stopSyncEvent()
1248 status.totalStats.numFailures++; in stopSyncEvent()
1257 status.totalStats.numCancels++; in stopSyncEvent()
[all …]
DSyncManager.java2313 c.accept("Total", status.totalStats, (i) -> Integer.toString(i), row); in dumpSyncState()