/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/ |
D | ConnectivityDiagnosticsManagerTest.java | 411 int detectionMethod, long timestampMillis, @NonNull PersistableBundle extras) in verifyOnDataStallSuspected() argument 414 verifyOnDataStallSuspected(detectionMethod, detectionMethod, timestampMillis, extras); in verifyOnDataStallSuspected() 581 int detectionMethod, in expectOnDataStallSuspected() argument 587 assertEquals(detectionMethod, result.getDetectionMethod()); in expectOnDataStallSuspected()
|
/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/7/android/net/ |
D | DataStallReportParcelable.aidl | 21 int detectionMethod = 1;
|
/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/21/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/18/android/net/ |
D | DataStallReportParcelable.aidl | 38 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/14/android/net/ |
D | DataStallReportParcelable.aidl | 38 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/9/android/net/ |
D | DataStallReportParcelable.aidl | 22 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/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/20/android/net/ |
D | DataStallReportParcelable.aidl | 38 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/11/android/net/ |
D | DataStallReportParcelable.aidl | 38 int detectionMethod = 1;
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/19/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/10/android/net/ |
D | DataStallReportParcelable.aidl | 23 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 | 214 void simulateDataStall(int detectionMethod, long timestampMillis, in Network network, in simulateDataStall() argument
|
D | ConnectivityManager.java | 5786 public void simulateDataStall(@DetectionMethod int detectionMethod, long timestampMillis, in simulateDataStall() argument 5789 mService.simulateDataStall(detectionMethod, timestampMillis, network, extras); in simulateDataStall()
|
/packages/modules/NetworkStack/src/com/android/server/connectivity/ |
D | NetworkMonitor.java | 3916 int detectionMethod = 0; in isDataStall() local 3919 detectionMethod |= DETECTION_METHOD_DNS_EVENTS; in isDataStall() 3924 detectionMethod |= DETECTION_METHOD_TCP_METRICS; in isDataStall() 3928 p.detectionMethod = detectionMethod; in isDataStall()
|
/packages/modules/Connectivity/service/src/com/android/server/ |
D | ConnectivityService.java | 5132 log("Data stall detected with methods: " + p.detectionMethod); 5135 int detectionMethod = 0; 5138 detectionMethod |= DETECTION_METHOD_DNS_EVENTS; 5144 detectionMethod |= DETECTION_METHOD_TCP_METRICS; 5148 ConnectivityDiagnosticsHandler.EVENT_DATA_STALL_SUSPECTED, detectionMethod, netId, 5157 private boolean hasDataStallDetectionMethod(DataStallReportParcelable p, int detectionMethod) { 5158 return (p.detectionMethod & detectionMethod) != 0; 12312 @NonNull NetworkAgentInfo nai, long timestampMillis, int detectionMethod, 12320 detectionMethod, 12542 public void simulateDataStall(int detectionMethod, long timestampMillis, [all …]
|
/packages/modules/NetworkStack/tests/unit/src/com/android/server/connectivity/ |
D | NetworkMonitorTest.java | 3856 (p.detectionMethod & ConstantsShim.DETECTION_METHOD_DNS_EVENTS) != 0 in matchDnsAndTcpDataStallParcelable() 3857 && (p.detectionMethod & ConstantsShim.DETECTION_METHOD_TCP_METRICS) != 0 in matchDnsAndTcpDataStallParcelable() 3862 return argThat(p -> (p.detectionMethod & ConstantsShim.DETECTION_METHOD_DNS_EVENTS) != 0 in matchDnsDataStallParcelable() 3867 return argThat(p -> (p.detectionMethod & ConstantsShim.DETECTION_METHOD_TCP_METRICS) != 0); in matchTcpDataStallParcelable()
|