Home
last modified time | relevance | path

Searched refs:statsEntry (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
DDataIdleTest.java101 Entry statsEntry = stats.getValues(i, null); in reportStats() local
109 rxPackets += statsEntry.rxPackets; in reportStats()
110 rxBytes += statsEntry.rxBytes; in reportStats()
111 txPackets += statsEntry.txPackets; in reportStats()
112 txBytes += statsEntry.txBytes; in reportStats()
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
DBandwidthTest.java313 Entry statsEntry = stats.getValues(i, null); in addStatsToResults() local
315 if (statsEntry.tag != 0) { in addStatsToResults()
319 if (statsEntry.uid != uid) { in addStatsToResults()
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()