/aosp12/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/ |
H A D | ConnectivityDiagnosticsManagerTest.java | 368 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 D | DataStallReportParcelable.aidl | 21 int detectionMethod = 1;
|
/aosp12/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/8/android/net/ |
H A D | DataStallReportParcelable.aidl | 21 int detectionMethod = 1;
|
/aosp12/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/6/android/net/ |
H A D | DataStallReportParcelable.aidl | 21 int detectionMethod = 1;
|
/aosp12/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/9/android/net/ |
H A D | DataStallReportParcelable.aidl | 22 int detectionMethod = 1;
|
/aosp12/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/current/android/net/ |
H A D | DataStallReportParcelable.aidl | 23 int detectionMethod = 1;
|
/aosp12/packages/modules/NetworkStack/common/networkstackclient/src/android/net/ |
H A D | DataStallReportParcelable.aidl | 29 int detectionMethod = 1;
|
/aosp12/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/10/android/net/ |
H A D | DataStallReportParcelable.aidl | 23 int detectionMethod = 1;
|
/aosp12/packages/modules/Connectivity/framework/src/android/net/ |
H A D | ConnectivityDiagnosticsManager.java | 469 @DetectionMethod int detectionMethod, in DataStallReport() argument 475 mDetectionMethod = detectionMethod; in DataStallReport()
|
H A D | IConnectivityManager.aidl | 204 void simulateDataStall(int detectionMethod, long timestampMillis, in Network network, in simulateDataStall() argument
|
H A D | ConnectivityManager.java | 5185 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 D | NetworkMonitor.java | 3349 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 D | ConnectivityService.java | 3675 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 D | ConnectivityManager.java | 892 public void simulateDataStall(int detectionMethod, long timestampMillis, in simulateDataStall() argument
|
/aosp12/packages/modules/NetworkStack/tests/unit/src/com/android/server/connectivity/ |
H A D | NetworkMonitorTest.java | 2970 (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 D | ConnectivityServiceTest.java | 1078 p.detectionMethod = DATA_STALL_DETECTION_METHOD; in notifyDataStallSuspected()
|