Home
last modified time | relevance | path

Searched refs:totalRxBytes (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DNetworkStatsManagerTest.java511 long totalRxBytes = 0; in testAppSummary() local
530 totalRxBytes += bucket.getRxBytes(); in testAppSummary()
542 assertTrue("No Rx bytes usage for uid " + Process.myUid(), totalRxBytes > 0); in testAppSummary()
626 long totalRxBytes = 0; in testUidDetails() local
638 totalRxBytes += bucket.getRxBytes(); in testUidDetails()
641 assertTrue("No Rx bytes usage for uid " + Process.myUid(), totalRxBytes > 0); in testUidDetails()
680 long totalRxBytes = 0; in testTagDetails() local
693 totalRxBytes += bucket.getRxBytes(); in testTagDetails()
697 + " for uid " + Process.myUid(), totalRxBytes > 0); in testTagDetails()
938 long totalRxBytes = 0; in getTotalAndAssertNotEmpty() local
[all …]
/packages/modules/Connectivity/framework-t/src/android/net/
DNetworkStats.java1729 long totalRxBytes = 0; in addTrafficToApplications() local
1738 totalRxBytes = Math.min(rxBytes[i], rxBytesAcrossUnderlyingIfaces); in addTrafficToApplications()
1777 multiplySafeByRational(totalRxBytes, in addTrafficToApplications()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiMetrics.java6244 staEvent.totalRxBytes = mFacade.getTotalRxBytes(); in addStaEvent()
6491 if (event.totalRxBytes > 0) sb.append(" totalRxBytes=").append(event.totalRxBytes); in staEventToString()
6731 sb.append(" totalRxBytes=").append(event.totalRxBytes);
6956 event.totalRxBytes = mFacade.getTotalRxBytes();
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiMetricsTest.java3711 assertEquals(expectedValues[12], event.totalRxBytes); in verifyUnusableEvent()