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.java546 + exception.getErrorType() in onError()
1983 error = new IwlanError(ikeSessionState.getErrorType(), ikeException);
2044 if (selectorResult.getEpdgError().getErrorType() == IwlanError.NO_ERROR
2052 (selectorResult.getEpdgError().getErrorType()
2598 if (epdgError.getErrorType() != IwlanError.NO_ERROR) {
3237 if (!isUnderlyingNetworkValidationRequired(error.getErrorType())) {
/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()
234 int ikeErrorType = ((IkeProtocolException) mException).getErrorType(); in hashCode()
DErrorPolicyManager.java213 if (iwlanError.getErrorType() == IwlanError.NO_ERROR) { in reportIwlanError()
244 if (iwlanError.getErrorType() == IwlanError.NO_ERROR) { in reportIwlanError()
293 int errorType = error.getErrorType(); in getDataFailCause()
324 int protocolErrorType = ikeProtocolException.getErrorType(); in getDataFailCauseForIkeProtocolException()
547 if (selectedPolicy == null || policy.getErrorType() != GENERIC_ERROR_TYPE) {
910 int getErrorType() {
928 && iwlanError.getErrorType() == IwlanError.IKE_PROTOCOL_EXCEPTION) {
930 iwlanErrorDetail = String.valueOf(exception.getErrorType());
943 && iwlanError.getErrorType() == IwlanError.IKE_PROTOCOL_EXCEPTION
984 return switch (iwlanError.getErrorType()) {
[all …]
DIwlanDataService.java1879 if (iwlanError.getErrorType() != IwlanError.TUNNEL_NOT_FOUND) { in handleTunnelClosed()
1959 metricsAtom.setIwlanError(iwlanError.getErrorType()); in handleTunnelClosed()
2001 if (iwlanError.getErrorType() != IwlanError.NO_ERROR in handleTunnelClosed()
2002 && iwlanError.getErrorType() != IwlanError.IKE_INTERNAL_IO_EXCEPTION) { in handleTunnelClosed()
/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/modules/IPsec/api/
Dcurrent.txt421 method public int getErrorType();
/packages/services/Iwlan/test/com/google/android/iwlan/epdg/
DEpdgSelectorTest.java600 assertEquals(IwlanError.NO_ERROR, ret.getErrorType());
DEpdgTunnelManagerTest.java1876 .getErrorType(); in testReportIwlanErrorIkeProtocolException()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachine.java2331 if (exception.getErrorType() == ERROR_TYPE_INVALID_SYNTAX) { in handleRequestGenericProcessError()
/packages/services/Car/service/src/com/android/car/
DCarShellCommand.java4238 writer.println("Error: " + error.getErrorType().name() + ": "
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachineTest.java3517 assertEquals(ERROR_TYPE_INTERNAL_ADDRESS_FAILURE, exception.getErrorType()); in testAuthHandlesCreateChildErrorNotify()