Home
last modified time | relevance | path

Searched refs:probesSucceeded (Results 1 – 21 of 21) sorted by relevance

/packages/modules/NetworkStack/tests/unit/src/com/android/server/connectivity/
DNetworkMonitorTest.java2847 private NetworkMonitor runPartialConnectivityNetworkTest(int probesSucceeded)
2850 probesSucceeded, null /* redirectUrl */);
2862 private NetworkMonitor runNetworkTest(int testResult, int probesSucceeded, String redirectUrl)
2865 probesSucceeded, redirectUrl);
2869 int testResult, int probesSucceeded, String redirectUrl) throws RemoteException {
2872 verifyNetworkTested(testResult, probesSucceeded, redirectUrl);
2878 private void verifyNetworkTested(int testResult, int probesSucceeded) throws RemoteException {
2879 verifyNetworkTested(testResult, probesSucceeded, null /* redirectUrl */);
2882 private void verifyNetworkTested(int testResult, int probesSucceeded, String redirectUrl)
2886 matchNetworkTestResultParcelable(testResult, probesSucceeded, redirectUrl));
[all …]
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/6/android/net/
DNetworkTestResultParcelable.aidl22 int probesSucceeded;
DINetworkMonitorCallbacks.aidl26 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/7/android/net/
DNetworkTestResultParcelable.aidl22 int probesSucceeded;
DINetworkMonitorCallbacks.aidl26 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/8/android/net/
DNetworkTestResultParcelable.aidl22 int probesSucceeded;
DINetworkMonitorCallbacks.aidl26 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/9/android/net/
DNetworkTestResultParcelable.aidl23 int probesSucceeded;
DINetworkMonitorCallbacks.aidl26 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/current/android/net/
DNetworkTestResultParcelable.aidl24 int probesSucceeded;
DINetworkMonitorCallbacks.aidl27 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/10/android/net/
DNetworkTestResultParcelable.aidl24 int probesSucceeded;
DINetworkMonitorCallbacks.aidl27 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
/packages/modules/NetworkStack/common/networkstackclient/src/android/net/
DNetworkTestResultParcelable.aidl34 int probesSucceeded;
DINetworkMonitorCallbacks.aidl35 void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/4/android/net/
DINetworkMonitorCallbacks.aidl8 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded); in notifyProbeStatusChanged() argument
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/5/android/net/
DINetworkMonitorCallbacks.aidl26 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded); in notifyProbeStatusChanged() argument
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DConnectivityDiagnosticsManagerTest.java531 final int probesSucceeded = extras.getInt(KEY_NETWORK_VALIDATION_RESULT); in maybeVerifyOnConnectivityReportAvailable() local
532 assertTrue("PROBES_SUCCEEDED mask not in expected range", probesSucceeded >= 0); in maybeVerifyOnConnectivityReportAvailable()
/packages/modules/NetworkStack/src/com/android/server/connectivity/
DNetworkMonitor.java750 getLegacyTestResult(result.result, result.probesSucceeded), in notifyNetworkTested()
769 protected int getLegacyTestResult(int evaluationResult, int probesSucceeded) { in getLegacyTestResult() argument
780 return evaluationResult | probesSucceeded; in getLegacyTestResult()
783 private void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) { in notifyProbeStatusChanged() argument
785 mCallback.notifyProbeStatusChanged(probesCompleted, probesSucceeded); in notifyProbeStatusChanged()
3442 p.probesSucceeded = mProbeResults; in reportEvaluationResult()
/packages/modules/Connectivity/tests/unit/java/com/android/server/
DConnectivityServiceTest.java902 p.probesSucceeded = mProbesSucceeded; in onValidationRequested()
989 int probesSucceeded = NETWORK_VALIDATION_PROBE_DNS | NETWORK_VALIDATION_PROBE_HTTPS; in setNetworkValid() local
991 probesSucceeded |= NETWORK_VALIDATION_PROBE_PRIVDNS; in setNetworkValid()
995 setProbesStatus(probesSucceeded, probesSucceeded); in setNetworkValid()
1003 int probesSucceeded = 0; in setNetworkInvalid() local
1008 probesSucceeded = probesCompleted; in setNetworkInvalid()
1011 setProbesStatus(probesCompleted, probesSucceeded); in setNetworkInvalid()
1020 int probesSucceeded = VALIDATION_RESULT_INVALID; in setNetworkPortal() local
1024 setProbesStatus(probesCompleted, probesSucceeded); in setNetworkPortal()
1032 int probesSucceeded = NETWORK_VALIDATION_PROBE_DNS | NETWORK_VALIDATION_PROBE_FALLBACK; in setNetworkPartial() local
[all …]
/packages/modules/Connectivity/service/src/com/android/server/
DConnectivityService.java3578 extras.putInt(KEY_NETWORK_PROBES_SUCCEEDED_BITMASK, p.probesSucceeded); in notifyNetworkTestedWithExtras()
3596 public void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) { in notifyProbeStatusChanged() argument
3599 probesCompleted, probesSucceeded, new Integer(mNetId))); in notifyProbeStatusChanged()