Home
last modified time | relevance | path

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

/packages/modules/NetworkStack/tests/unit/src/com/android/server/connectivity/
DNetworkMonitorTest.java1978 private void verifySendDataStallDetectionStats(WrappedNetworkMonitor nm, int evalType,
1989 verifyTestDataStallDetectionStats(evalType, transport, statsCaptor.getValue());
1992 private void verifyTestDataStallDetectionStats(int evalType, int transport,
2017 assertEquals(evalType, stats.mEvaluationType);
2018 if ((evalType & DATA_STALL_EVALUATION_TYPE_TCP) != 0) {
2027 if ((evalType & DATA_STALL_EVALUATION_TYPE_DNS) != 0) {
2100 private void testDataStallMetricsWithCellular(int evalType) {
2101 testDataStallMetrics(evalType, NetworkCapabilities.TRANSPORT_CELLULAR);
2104 private void testDataStallMetricsWithWiFi(int evalType) {
2105 testDataStallMetrics(evalType, NetworkCapabilities.TRANSPORT_WIFI);
[all …]
/packages/modules/NetworkStack/src/com/android/networkstack/metrics/
DDataStallDetectionStats.java73 @NonNull int[] returnCode, @NonNull long[] dnsTime, int evalType, int netType, in DataStallDetectionStats() argument
82 mEvaluationType = evalType; in DataStallDetectionStats()