Home
last modified time | relevance | path

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

/packages/services/Iwlan/src/com/google/android/iwlan/
DIwlanError.java130 public @IwlanErrorType int getErrorType() { in getErrorType() method in IwlanError
164 sb.append("ERR: " + ((IkeProtocolException) mException).getErrorType() + "\nDATA:"); in errorDetailsString()
181 public static int getErrorType(String errorType) { in getErrorType() method in IwlanError
218 if (mErrorType == error.getErrorType()) { in equals()
223 (((IkeProtocolException) mException).getErrorType() in equals()
225 .getErrorType()); in equals()
DErrorPolicyManager.java220 if (iwlanError.getErrorType() == IwlanError.NO_ERROR) { in reportIwlanError()
257 if (iwlanError.getErrorType() == IwlanError.NO_ERROR) { in reportIwlanError()
319 if (error.getErrorType() == IwlanError.NO_ERROR) { in getDataFailCause()
321 } else if (error.getErrorType() == IwlanError.EPDG_SELECTOR_SERVER_SELECTION_FAILED) { in getDataFailCause()
323 } else if (error.getErrorType() == IwlanError.IKE_INTERNAL_IO_EXCEPTION) { in getDataFailCause()
325 } else if (error.getErrorType() == IwlanError.SIM_NOT_READY_EXCEPTION) { in getDataFailCause()
327 } else if (error.getErrorType() == IwlanError.NETWORK_FAILURE) { in getDataFailCause()
329 } else if (error.getErrorType() == IwlanError.IKE_PROTOCOL_EXCEPTION) { in getDataFailCause()
332 int protocolErrorType = ((IkeProtocolException) exception).getErrorType(); in getDataFailCause()
526 if (selectedPolicy == null || policy.getErrorType() != GENERIC_ERROR_TYPE) { in getPreferredErrorPolicy()
[all …]
DIwlanDataService.java1189 metricsAtom.setIwlanError(iwlanError.getErrorType()); in handleMessage()
1215 if (iwlanError.getErrorType() != IwlanError.NO_ERROR in handleMessage()
1216 && iwlanError.getErrorType() in handleMessage()
/packages/modules/IPsec/tests/cts/src/android/ipsec/ike/cts/
DIkeSessionPskTest.java333 assertEquals(ERROR_TYPE_NO_PROPOSAL_CHOSEN, protocolException.getErrorType()); in verifyIkeInitFail()
376 assertEquals(ERROR_TYPE_AUTHENTICATION_FAILED, protocolException.getErrorType()); in testIkeAuthHandlesAuthFailNotification()
413 assertEquals(ERROR_TYPE_TS_UNACCEPTABLE, protocolException.getErrorType()); in verifyIkeAuthHandlesFirstChildCreationFail()
/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/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/modules/IPsec/src/java/android/net/ipsec/ike/exceptions/
DIkeProtocolException.java194 public int getErrorType() { in getErrorType() method in IkeProtocolException
/packages/services/Iwlan/src/com/google/android/iwlan/epdg/
DEpdgTunnelManager.java494 + exception.getErrorType() in onError()
1467 if (selectorResult.getEpdgError().getErrorType() == IwlanError.NO_ERROR in handleMessage()
1477 (selectorResult.getEpdgError().getErrorType() in handleMessage()
1551 if (sessionClosedData.mIwlanError.getErrorType() != IwlanError.NO_ERROR) { in handleMessage()
1822 if (epdgError.getErrorType() != IwlanError.NO_ERROR) { in selectEpdgAddress()
/packages/services/Car/tests/CarTelemetryApp/src/com/android/car/cartelemetryapp/
DCarMetricsCollectorService.java207 .append(error.getErrorType().name()) in errorToString()
/packages/services/Iwlan/test/com/google/android/iwlan/epdg/
DEpdgSelectorTest.java342 assertEquals(ret.getErrorType(), IwlanError.NO_ERROR); in getValidatedServerListWithDefaultParams()
DEpdgTunnelManagerTest.java1659 .getErrorType(); in testReportIwlanErrorIkeProtocolException()
/packages/services/Car/service/src/com/android/car/telemetry/
DCarTelemetryService.java320 writer.println("\t\tType: " + error.getErrorType()); in dump()
/packages/services/Iwlan/test/com/google/android/iwlan/
DErrorPolicyManagerTest.java100 when(exception.getErrorType()).thenReturn(errorCode); in buildIwlanIkeProtocolError()
/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivity/
DVpnTest.java1371 when(exception.getErrorType()).thenReturn(errorCode); in testStartPlatformVpnAuthenticationFailed()
1381 when(exception.getErrorType()).thenReturn(errorCode); in testStartPlatformVpnFailedWithRecoverableError()
/packages/modules/IPsec/api/
Dcurrent.txt418 method public int getErrorType();
/packages/services/Car/service/src/com/android/car/
DCarShellCommand.java3037 writer.println("Error: " + error.getErrorType().name() + ": "
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachine.java2089 if (exception.getErrorType() == ERROR_TYPE_INVALID_SYNTAX) { in handleRequestGenericProcessError()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachineTest.java3389 assertEquals(ERROR_TYPE_INTERNAL_ADDRESS_FAILURE, exception.getErrorType()); in testAuthHandlesCreateChildErrorNotify()