/packages/modules/NetworkStack/tests/unit/src/com/android/server/connectivity/ |
D | NetworkMonitorTest.java | 2847 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/ |
D | NetworkTestResultParcelable.aidl | 22 int probesSucceeded;
|
D | INetworkMonitorCallbacks.aidl | 26 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/7/android/net/ |
D | NetworkTestResultParcelable.aidl | 22 int probesSucceeded;
|
D | INetworkMonitorCallbacks.aidl | 26 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/8/android/net/ |
D | NetworkTestResultParcelable.aidl | 22 int probesSucceeded;
|
D | INetworkMonitorCallbacks.aidl | 26 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/9/android/net/ |
D | NetworkTestResultParcelable.aidl | 23 int probesSucceeded;
|
D | INetworkMonitorCallbacks.aidl | 26 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/current/android/net/ |
D | NetworkTestResultParcelable.aidl | 24 int probesSucceeded;
|
D | INetworkMonitorCallbacks.aidl | 27 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/10/android/net/ |
D | NetworkTestResultParcelable.aidl | 24 int probesSucceeded;
|
D | INetworkMonitorCallbacks.aidl | 27 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
|
/packages/modules/NetworkStack/common/networkstackclient/src/android/net/ |
D | NetworkTestResultParcelable.aidl | 34 int probesSucceeded;
|
D | INetworkMonitorCallbacks.aidl | 35 void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded) = 5; in notifyProbeStatusChanged() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/4/android/net/ |
D | INetworkMonitorCallbacks.aidl | 8 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded); in notifyProbeStatusChanged() argument
|
/packages/modules/NetworkStack/common/networkstackclient/aidl_api/networkstack-aidl-interfaces/5/android/net/ |
D | INetworkMonitorCallbacks.aidl | 26 oneway void notifyProbeStatusChanged(int probesCompleted, int probesSucceeded); in notifyProbeStatusChanged() argument
|
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/ |
D | ConnectivityDiagnosticsManagerTest.java | 531 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/ |
D | NetworkMonitor.java | 750 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/ |
D | ConnectivityServiceTest.java | 902 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/ |
D | ConnectivityService.java | 3578 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()
|