| /packages/modules/Connectivity/tests/cts/net/src/android/net/cts/ |
| D | ConnectivityDiagnosticsManagerTest.java | 400 int detectionMethod, long timestampMillis, @NonNull PersistableBundle extras) in verifyOnDataStallSuspected() argument 403 verifyOnDataStallSuspected(detectionMethod, detectionMethod, timestampMillis, extras); in verifyOnDataStallSuspected() 570 int detectionMethod, in expectOnDataStallSuspected() argument 576 assertEquals(detectionMethod, result.getDetectionMethod()); in expectOnDataStallSuspected()
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/6/android/net/ |
| D | DataStallReportParcelable.aidl | 21 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/7/android/net/ |
| D | DataStallReportParcelable.aidl | 21 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/8/android/net/ |
| D | DataStallReportParcelable.aidl | 21 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/current/android/net/ |
| D | DataStallReportParcelable.aidl | 38 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/18/android/net/ |
| D | DataStallReportParcelable.aidl | 38 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/12/android/net/ |
| D | DataStallReportParcelable.aidl | 38 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/13/android/net/ |
| D | DataStallReportParcelable.aidl | 38 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/14/android/net/ |
| D | DataStallReportParcelable.aidl | 38 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/10/android/net/ |
| D | DataStallReportParcelable.aidl | 23 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/17/android/net/ |
| D | DataStallReportParcelable.aidl | 38 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/11/android/net/ |
| D | DataStallReportParcelable.aidl | 38 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/9/android/net/ |
| D | DataStallReportParcelable.aidl | 22 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/15/android/net/ |
| D | DataStallReportParcelable.aidl | 38 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/src/android/net/ |
| D | DataStallReportParcelable.aidl | 29 int detectionMethod = 1;
|
| /packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/16/android/net/ |
| D | DataStallReportParcelable.aidl | 38 int detectionMethod = 1;
|
| /packages/modules/Connectivity/framework/src/android/net/ |
| D | ConnectivityDiagnosticsManager.java | 469 @DetectionMethod int detectionMethod, in DataStallReport() argument 475 mDetectionMethod = detectionMethod; in DataStallReport()
|
| D | IConnectivityManager.aidl | 212 void simulateDataStall(int detectionMethod, long timestampMillis, in Network network, in simulateDataStall() argument
|
| D | ConnectivityManager.java | 5583 public void simulateDataStall(@DetectionMethod int detectionMethod, long timestampMillis, in simulateDataStall() argument 5586 mService.simulateDataStall(detectionMethod, timestampMillis, network, extras); in simulateDataStall()
|
| /packages/modules/NetworkStack/src/com/android/server/connectivity/ |
| D | NetworkMonitor.java | 3506 int detectionMethod = 0; in isDataStall() local 3509 detectionMethod |= DETECTION_METHOD_DNS_EVENTS; in isDataStall() 3514 detectionMethod |= DETECTION_METHOD_TCP_METRICS; in isDataStall() 3518 p.detectionMethod = detectionMethod; in isDataStall()
|
| /packages/modules/Connectivity/service/src/com/android/server/ |
| D | ConnectivityService.java | 4385 log("Data stall detected with methods: " + p.detectionMethod); 4388 int detectionMethod = 0; 4391 detectionMethod |= DETECTION_METHOD_DNS_EVENTS; 4397 detectionMethod |= DETECTION_METHOD_TCP_METRICS; 4401 ConnectivityDiagnosticsHandler.EVENT_DATA_STALL_SUSPECTED, detectionMethod, netId, 4410 private boolean hasDataStallDetectionMethod(DataStallReportParcelable p, int detectionMethod) { 4411 return (p.detectionMethod & detectionMethod) != 0; 10816 @NonNull NetworkAgentInfo nai, long timestampMillis, int detectionMethod, 10824 detectionMethod, 11040 public void simulateDataStall(int detectionMethod, long timestampMillis, [all …]
|
| /packages/modules/NetworkStack/tests/unit/src/com/android/server/connectivity/ |
| D | NetworkMonitorTest.java | 3284 (p.detectionMethod & ConstantsShim.DETECTION_METHOD_DNS_EVENTS) != 0 in matchDnsAndTcpDataStallParcelable() 3285 && (p.detectionMethod & ConstantsShim.DETECTION_METHOD_TCP_METRICS) != 0 in matchDnsAndTcpDataStallParcelable() 3290 return argThat(p -> (p.detectionMethod & ConstantsShim.DETECTION_METHOD_DNS_EVENTS) != 0 in matchDnsDataStallParcelable() 3295 return argThat(p -> (p.detectionMethod & ConstantsShim.DETECTION_METHOD_TCP_METRICS) != 0); in matchTcpDataStallParcelable()
|
| /packages/modules/Connectivity/tests/unit/java/com/android/server/ |
| D | ConnectivityServiceTest.java | 1300 p.detectionMethod = DATA_STALL_DETECTION_METHOD; in notifyDataStallSuspected()
|