Home
last modified time | relevance | path

Searched refs:getErrorType (Results 1 – 22 of 22) sorted by relevance

/packages/services/Iwlan/src/com/google/android/iwlan/epdg/
DIkeSessionState.java25 public int getErrorType() { in getErrorType() method
31 public int getErrorType() { in getErrorType() method
37 public int getErrorType() { in getErrorType() method
43 public int getErrorType() { in getErrorType() method
54 public abstract int getErrorType(); in getErrorType() method in IkeSessionState
DEpdgTunnelManager.java536 + exception.getErrorType() in onError()
1841 error = new IwlanError(ikeSessionState.getErrorType(), ikeException); in getErrorFromIkeException()
1903 if (selectorResult.getEpdgError().getErrorType() == IwlanError.NO_ERROR in handleMessage()
1911 (selectorResult.getEpdgError().getErrorType() in handleMessage()
2458 if (epdgError.getErrorType() != IwlanError.NO_ERROR) { in selectEpdgAddress()
/packages/services/Iwlan/src/com/google/android/iwlan/
DIwlanError.java152 public @IwlanErrorType int getErrorType() { in getErrorType() method in IwlanError
184 .append(((IkeProtocolException) mException).getErrorType()) in errorDetailsString()
210 if (mErrorType == error.getErrorType()) { in equals()
215 (((IkeProtocolException) mException).getErrorType() in equals()
217 .getErrorType()); in equals()
DErrorPolicyManager.java208 if (iwlanError.getErrorType() == IwlanError.NO_ERROR) { in reportIwlanError()
239 if (iwlanError.getErrorType() == IwlanError.NO_ERROR) { in reportIwlanError()
287 int errorType = error.getErrorType(); in getDataFailCause()
321 int protocolErrorType = ikeProtocolException.getErrorType(); in getDataFailCauseForIkeProtocolException()
547 if (selectedPolicy == null || policy.getErrorType() != GENERIC_ERROR_TYPE) { in getPreferredErrorPolicy()
920 int getErrorType() { in getErrorType() method in ErrorPolicyManager.ErrorPolicy
938 && iwlanError.getErrorType() == IwlanError.IKE_PROTOCOL_EXCEPTION) { in match()
940 iwlanErrorDetail = String.valueOf(exception.getErrorType()); in match()
953 && iwlanError.getErrorType() == IwlanError.IKE_PROTOCOL_EXCEPTION in match()
995 switch (iwlanError.getErrorType()) { in getGenericErrorDetailString()
[all …]
DIwlanDataService.java1419 if (iwlanError.getErrorType() != IwlanError.TUNNEL_NOT_FOUND) { in handleMessage()
1500 metricsAtom.setIwlanError(iwlanError.getErrorType()); in handleMessage()
1527 if (iwlanError.getErrorType() != IwlanError.NO_ERROR in handleMessage()
1528 && iwlanError.getErrorType() in handleMessage()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/
DIkeNotifyPayloadTest.java249 assertEquals(ERROR_TYPE_INVALID_KE_PAYLOAD, exception.getErrorType()); in testValidateAndBuildIkeExceptionWithData()
268 assertEquals(ERROR_TYPE_INVALID_SELECTORS, exception.getErrorType()); in testValidateAndBuildInvalidSelectorsException()
284 assertEquals(errorType, exception.getErrorType()); in verifyIkeExceptionWithoutData()
372 assertEquals(unrecognizedType, exception.getErrorType()); in testValidateAndBuildUnrecognizedIkeException()
/packages/modules/IPsec/tests/cts/src/android/ipsec/ike/cts/
DIkeSessionPskTest.java356 assertEquals(ERROR_TYPE_NO_PROPOSAL_CHOSEN, protocolException.getErrorType()); in verifyIkeInitFail()
399 assertEquals(ERROR_TYPE_AUTHENTICATION_FAILED, protocolException.getErrorType()); in testIkeAuthHandlesAuthFailNotification()
436 assertEquals(ERROR_TYPE_TS_UNACCEPTABLE, protocolException.getErrorType()); in verifyIkeAuthHandlesFirstChildCreationFail()
/packages/modules/IPsec/src/java/android/net/ipsec/ike/exceptions/
DUnrecognizedIkeProtocolException.java71 return getErrorType(); in getMetricsErrorCode()
DIkeProtocolException.java194 public int getErrorType() { in getErrorType() method in IkeProtocolException
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
Dtyping_weighting.cpp27 ErrorTypeUtils::ErrorType TypingWeighting::getErrorType(const CorrectionType correctionType, in getErrorType() function in latinime::TypingWeighting
Dtyping_weighting.h213 ErrorTypeUtils::ErrorType getErrorType(const CorrectionType correctionType,
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/
Dweighting.h88 virtual ErrorTypeUtils::ErrorType getErrorType(const CorrectionType correctionType,
Dweighting.cpp86 const ErrorTypeUtils::ErrorType errorType = weighting->getErrorType(correctionType, in addCostAndForwardInputIndex()
/packages/services/Car/tests/CarTelemetryApp/src/com/android/car/cartelemetryapp/
DCarMetricsCollectorService.java206 .append(error.getErrorType().name()) in errorToString()
/packages/services/Car/service/src/com/android/car/telemetry/
DCarTelemetryService.java327 writer.println("\t\tType: " + error.getErrorType()); in dump()
/packages/services/Iwlan/test/com/google/android/iwlan/
DErrorPolicyManagerTest.java194 when(exception.getErrorType()).thenReturn(errorCode); in buildIwlanIkeProtocolError()
/packages/services/Iwlan/test/com/google/android/iwlan/epdg/
DEpdgSelectorTest.java612 assertEquals(IwlanError.NO_ERROR, ret.getErrorType()); in getValidatedServerListWithIpPreference()
DEpdgTunnelManagerTest.java1874 .getErrorType(); in testReportIwlanErrorIkeProtocolException()
/packages/modules/IPsec/api/
Dcurrent.txt421 method public int getErrorType();
/packages/services/Car/service/src/com/android/car/
DCarShellCommand.java4046 writer.println("Error: " + error.getErrorType().name() + ": "
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachine.java2325 if (exception.getErrorType() == ERROR_TYPE_INVALID_SYNTAX) { in handleRequestGenericProcessError()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachineTest.java3465 assertEquals(ERROR_TYPE_INTERNAL_ADDRESS_FAILURE, exception.getErrorType()); in testAuthHandlesCreateChildErrorNotify()