Home
last modified time | relevance | path

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

12

/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DConnectivityDiagnosticsManagerTest.java411 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/
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/6/android/net/
DDataStallReportParcelable.aidl21 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/21/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/18/android/net/
DDataStallReportParcelable.aidl38 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/14/android/net/
DDataStallReportParcelable.aidl38 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/9/android/net/
DDataStallReportParcelable.aidl22 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/16/android/net/
DDataStallReportParcelable.aidl38 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/20/android/net/
DDataStallReportParcelable.aidl38 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/11/android/net/
DDataStallReportParcelable.aidl38 int detectionMethod = 1;
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/19/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/10/android/net/
DDataStallReportParcelable.aidl23 int detectionMethod = 1;
/packages/modules/Connectivity/framework/src/android/net/
DConnectivityDiagnosticsManager.java469 @DetectionMethod int detectionMethod, in DataStallReport() argument
475 mDetectionMethod = detectionMethod; in DataStallReport()
DIConnectivityManager.aidl214 void simulateDataStall(int detectionMethod, long timestampMillis, in Network network, in simulateDataStall() argument
DConnectivityManager.java5786 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/
DNetworkMonitor.java3916 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/
DConnectivityService.java5132 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/
DNetworkMonitorTest.java3856 (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()

12