Home
last modified time | relevance | path

Searched refs:detectionMethod (Results 1 – 16 of 16) sorted by relevance

/aosp12/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
H A DConnectivityDiagnosticsManagerTest.java368 int detectionMethod, long timestampMillis, @NonNull PersistableBundle extras) in verifyOnDataStallSuspected() argument
371 verifyOnDataStallSuspected(detectionMethod, detectionMethod, timestampMillis, extras); in verifyOnDataStallSuspected()
542 int detectionMethod, in expectOnDataStallSuspected() argument
548 assertEquals(detectionMethod, result.getDetectionMethod()); in expectOnDataStallSuspected()
/aosp12/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/7/android/net/
H A DDataStallReportParcelable.aidl21 int detectionMethod = 1;
/aosp12/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/8/android/net/
H A DDataStallReportParcelable.aidl21 int detectionMethod = 1;
/aosp12/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/6/android/net/
H A DDataStallReportParcelable.aidl21 int detectionMethod = 1;
/aosp12/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/9/android/net/
H A DDataStallReportParcelable.aidl22 int detectionMethod = 1;
/aosp12/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/current/android/net/
H A DDataStallReportParcelable.aidl23 int detectionMethod = 1;
/aosp12/packages/modules/NetworkStack/common/networkstackclient/src/android/net/
H A DDataStallReportParcelable.aidl29 int detectionMethod = 1;
/aosp12/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/10/android/net/
H A DDataStallReportParcelable.aidl23 int detectionMethod = 1;
/aosp12/packages/modules/Connectivity/framework/src/android/net/
H A DConnectivityDiagnosticsManager.java469 @DetectionMethod int detectionMethod, in DataStallReport() argument
475 mDetectionMethod = detectionMethod; in DataStallReport()
H A DIConnectivityManager.aidl204 void simulateDataStall(int detectionMethod, long timestampMillis, in Network network, in simulateDataStall() argument
H A DConnectivityManager.java5185 public void simulateDataStall(@DetectionMethod int detectionMethod, long timestampMillis, in simulateDataStall() argument
5188 mService.simulateDataStall(detectionMethod, timestampMillis, network, extras); in simulateDataStall()
/aosp12/packages/modules/NetworkStack/src/com/android/server/connectivity/
H A DNetworkMonitor.java3349 int detectionMethod = 0; in isDataStall() local
3352 detectionMethod |= DETECTION_METHOD_DNS_EVENTS; in isDataStall()
3357 detectionMethod |= DETECTION_METHOD_TCP_METRICS; in isDataStall()
3361 p.detectionMethod = detectionMethod; in isDataStall()
/aosp12/packages/modules/Connectivity/service/src/com/android/server/
H A DConnectivityService.java3675 log("Data stall detected with methods: " + p.detectionMethod); in notifyDataStallSuspected()
3678 int detectionMethod = 0; in notifyDataStallSuspected() local
3681 detectionMethod |= DETECTION_METHOD_DNS_EVENTS; in notifyDataStallSuspected()
3687 detectionMethod |= DETECTION_METHOD_TCP_METRICS; in notifyDataStallSuspected()
3691 ConnectivityDiagnosticsHandler.EVENT_DATA_STALL_SUSPECTED, detectionMethod, netId, in notifyDataStallSuspected()
3700 private boolean hasDataStallDetectionMethod(DataStallReportParcelable p, int detectionMethod) { in hasDataStallDetectionMethod() argument
3701 return (p.detectionMethod & detectionMethod) != 0; in hasDataStallDetectionMethod()
9328 @NonNull NetworkAgentInfo nai, long timestampMillis, int detectionMethod, in handleDataStallSuspected() argument
9336 detectionMethod, in handleDataStallSuspected()
9494 public void simulateDataStall(int detectionMethod, long timestampMillis, in simulateDataStall() argument
[all …]
/aosp12/frameworks/layoutlib/bridge/src/android/net/
H A DConnectivityManager.java892 public void simulateDataStall(int detectionMethod, long timestampMillis, in simulateDataStall() argument
/aosp12/packages/modules/NetworkStack/tests/unit/src/com/android/server/connectivity/
H A DNetworkMonitorTest.java2970 (p.detectionMethod & ConstantsShim.DETECTION_METHOD_DNS_EVENTS) != 0
2971 && (p.detectionMethod & ConstantsShim.DETECTION_METHOD_TCP_METRICS) != 0
2976 return argThat(p -> (p.detectionMethod & ConstantsShim.DETECTION_METHOD_DNS_EVENTS) != 0
2981 return argThat(p -> (p.detectionMethod & ConstantsShim.DETECTION_METHOD_TCP_METRICS) != 0);
/aosp12/packages/modules/Connectivity/tests/unit/java/com/android/server/
H A DConnectivityServiceTest.java1078 p.detectionMethod = DATA_STALL_DETECTION_METHOD; in notifyDataStallSuspected()