Home
last modified time | relevance | path

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

/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DConnectivityDiagnosticsManagerTest.java400 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/
DDataStallReportParcelable.aidl21 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/7/android/net/
DDataStallReportParcelable.aidl21 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/8/android/net/
DDataStallReportParcelable.aidl21 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/current/android/net/
DDataStallReportParcelable.aidl38 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/18/android/net/
DDataStallReportParcelable.aidl38 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/12/android/net/
DDataStallReportParcelable.aidl38 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/13/android/net/
DDataStallReportParcelable.aidl38 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/14/android/net/
DDataStallReportParcelable.aidl38 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/10/android/net/
DDataStallReportParcelable.aidl23 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/17/android/net/
DDataStallReportParcelable.aidl38 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/11/android/net/
DDataStallReportParcelable.aidl38 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/9/android/net/
DDataStallReportParcelable.aidl22 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/15/android/net/
DDataStallReportParcelable.aidl38 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/src/android/net/
DDataStallReportParcelable.aidl29 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/16/android/net/
DDataStallReportParcelable.aidl38 int detectionMethod = 1;
/packages/modules/Connectivity/framework/src/android/net/
DConnectivityDiagnosticsManager.java469 @DetectionMethod int detectionMethod, in DataStallReport() argument
475 mDetectionMethod = detectionMethod; in DataStallReport()
DIConnectivityManager.aidl212 void simulateDataStall(int detectionMethod, long timestampMillis, in Network network, in simulateDataStall() argument
DConnectivityManager.java5583 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/
DNetworkMonitor.java3506 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/
DConnectivityService.java4385 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/
DNetworkMonitorTest.java3284 (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/
DConnectivityServiceTest.java1300 p.detectionMethod = DATA_STALL_DETECTION_METHOD; in notifyDataStallSuspected()