Home
last modified time | relevance | path

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

/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DNetworkStatsManagerTest.java510 long totalTxBytes = 0; in testAppSummary() local
529 totalTxBytes += bucket.getTxBytes(); in testAppSummary()
544 assertTrue("No Tx bytes usage for uid " + Process.myUid(), totalTxBytes > 0); in testAppSummary()
625 long totalTxBytes = 0; in testUidDetails() local
637 totalTxBytes += bucket.getTxBytes(); in testUidDetails()
643 assertTrue("No Tx bytes usage for uid " + Process.myUid(), totalTxBytes > 0); in testUidDetails()
679 long totalTxBytes = 0; in testTagDetails() local
692 totalTxBytes += bucket.getTxBytes(); in testTagDetails()
701 + " for uid " + Process.myUid(), totalTxBytes > 0); in testTagDetails()
937 long totalTxBytes = 0; in getTotalAndAssertNotEmpty() local
[all …]
/packages/modules/Connectivity/framework-t/src/android/net/
DNetworkStats.java1747 long totalTxBytes = 0; in addTrafficToApplications() local
1752 totalTxBytes = Math.min(txBytes[i], txBytesAcrossUnderlyingIfaces); in addTrafficToApplications()
1791 multiplySafeByRational(totalTxBytes, in addTrafficToApplications()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiMetrics.java6243 staEvent.totalTxBytes = mFacade.getTotalTxBytes(); in addStaEvent()
6490 if (event.totalTxBytes > 0) sb.append(" totalTxBytes=").append(event.totalTxBytes); in staEventToString()
6730 sb.append(" totalTxBytes=").append(event.totalTxBytes);
6955 event.totalTxBytes = mFacade.getTotalTxBytes();
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiMetricsTest.java3710 assertEquals(expectedValues[11], event.totalTxBytes); in verifyUnusableEvent()