Home
last modified time | relevance | path

Searched refs:cause (Results 1 – 25 of 367) sorted by relevance

12345678910>>...15

/frameworks/base/services/backup/java/com/android/server/backup/keyvalue/
DTaskException.java37 static TaskException stateCompromised(Exception cause) { in stateCompromised() argument
38 if (cause instanceof TaskException) { in stateCompromised()
39 TaskException exception = (TaskException) cause; in stateCompromised()
40 return new TaskException(cause, /* stateCompromised */ true, exception.getStatus()); in stateCompromised()
42 return new TaskException(cause, /* stateCompromised */ true, DEFAULT_STATUS); in stateCompromised()
51 static TaskException causedBy(Exception cause) { in causedBy() argument
52 if (cause instanceof TaskException) { in causedBy()
53 return (TaskException) cause; in causedBy()
55 return new TaskException(cause, /* stateCompromised */ false, DEFAULT_STATUS); in causedBy()
65 private TaskException(Exception cause, boolean stateCompromised, int status) { in TaskException() argument
[all …]
DAgentException.java37 static AgentException transitory(Exception cause) { in transitory() argument
38 return new AgentException(/* transitory */ true, cause); in transitory()
45 static AgentException permanent(Exception cause) { in permanent() argument
46 return new AgentException(/* transitory */ false, cause); in permanent()
55 private AgentException(boolean transitory, Exception cause) { in AgentException() argument
56 super(cause); in AgentException()
/frameworks/base/services/robotests/backup/src/com/android/server/backup/keyvalue/
DTaskExceptionTest.java45 Exception cause = TaskException.forStatus(BackupTransport.TRANSPORT_NOT_INITIALIZED); in testStateCompromised_whenCauseInstanceOfTaskException() local
47 TaskException exception = TaskException.stateCompromised(cause); in testStateCompromised_whenCauseInstanceOfTaskException()
51 assertThat(exception.getCause()).isEqualTo(cause); in testStateCompromised_whenCauseInstanceOfTaskException()
56 Exception cause = new IOException(); in testStateCompromised_whenCauseNotInstanceOfTaskException() local
58 TaskException exception = TaskException.stateCompromised(cause); in testStateCompromised_whenCauseNotInstanceOfTaskException()
62 assertThat(exception.getCause()).isEqualTo(cause); in testStateCompromised_whenCauseNotInstanceOfTaskException()
83 Exception cause = TaskException.forStatus(BackupTransport.TRANSPORT_NOT_INITIALIZED); in testCausedBy_whenCauseInstanceOfTaskException_returnsCause() local
85 TaskException exception = TaskException.causedBy(cause); in testCausedBy_whenCauseInstanceOfTaskException_returnsCause()
87 assertThat(exception).isEqualTo(cause); in testCausedBy_whenCauseInstanceOfTaskException_returnsCause()
92 Exception cause = new IOException(); in testCausedBy_whenCauseNotInstanceOfTaskException() local
[all …]
DAgentExceptionTest.java41 Exception cause = new IOException(); in testTransitory_withCause() local
43 AgentException exception = AgentException.transitory(cause); in testTransitory_withCause()
46 assertThat(exception.getCause()).isEqualTo(cause); in testTransitory_withCause()
58 Exception cause = new IOException(); in testPermanent_withCause() local
60 AgentException exception = AgentException.permanent(cause); in testPermanent_withCause()
63 assertThat(exception.getCause()).isEqualTo(cause); in testPermanent_withCause()
/frameworks/base/keystore/java/android/security/
DKeyChainException.java51 public KeyChainException(String message, Throwable cause) { in KeyChainException() argument
52 super(message, cause); in KeyChainException()
62 public KeyChainException(Throwable cause) { in KeyChainException() argument
63 super((cause == null ? null : cause.toString()), cause); in KeyChainException()
/frameworks/base/core/java/android/util/
DAndroidException.java31 public AndroidException(String name, Throwable cause) { in AndroidException() argument
32 super(name, cause); in AndroidException()
35 public AndroidException(Exception cause) { in AndroidException() argument
36 super(cause); in AndroidException()
40 protected AndroidException(String message, Throwable cause, boolean enableSuppression, in AndroidException() argument
42 super(message, cause, enableSuppression, writableStackTrace); in AndroidException()
DAndroidRuntimeException.java31 public AndroidRuntimeException(String name, Throwable cause) { in AndroidRuntimeException() argument
32 super(name, cause); in AndroidRuntimeException()
35 public AndroidRuntimeException(Exception cause) { in AndroidRuntimeException() argument
36 super(cause); in AndroidRuntimeException()
/frameworks/base/core/java/com/android/internal/vibrator/persistence/
DXmlParserException.java36 String tagName, XmlPullParserException cause) { in createFromPullParserException() argument
37 return new XmlParserException("Error parsing " + tagName, cause); in createFromPullParserException()
46 XmlPullParserException cause) { in createFromPullParserException() argument
48 attributeName, attributeValue, tagName), cause); in createFromPullParserException()
55 public XmlParserException(String message, Throwable cause) { in XmlParserException() argument
56 super(message, cause); in XmlParserException()
/frameworks/opt/net/voip/src/java/android/net/sip/
DSipException.java32 public SipException(String message, Throwable cause) { in SipException() argument
34 super(message, ((cause instanceof javax.sip.SipException) in SipException()
35 && (cause.getCause() != null)) in SipException()
36 ? cause.getCause() in SipException()
37 : cause); in SipException()
/frameworks/base/core/java/android/view/inspector/
DStaticInspectionCompanionProvider.java51 Throwable cause = e.getCause(); in provide()
52 if (cause instanceof RuntimeException) throw (RuntimeException) cause; in provide()
53 if (cause instanceof Error) throw (Error) cause; in provide()
54 throw new RuntimeException(cause); in provide()
/frameworks/base/core/java/android/os/
DRemoteException.java42 public RemoteException(String message, Throwable cause, boolean enableSuppression, in RemoteException() argument
44 super(message, cause, enableSuppression, writableStackTrace); in RemoteException()
48 public RemoteException(Throwable cause) { in RemoteException() argument
49 this(cause.getMessage(), cause, true, false); in RemoteException()
DBadTypeParcelableException.java25 BadTypeParcelableException(Exception cause) { in BadTypeParcelableException() argument
26 super(cause); in BadTypeParcelableException()
28 BadTypeParcelableException(String msg, Throwable cause) { in BadTypeParcelableException() argument
29 super(msg, cause); in BadTypeParcelableException()
DBadParcelableException.java33 public BadParcelableException(Exception cause) { in BadParcelableException() argument
34 super(cause); in BadParcelableException()
37 public BadParcelableException(String msg, Throwable cause) { in BadParcelableException() argument
38 super(msg, cause); in BadParcelableException()
/frameworks/base/core/java/android/accounts/
DNetworkErrorException.java25 public NetworkErrorException(String message, Throwable cause) { in NetworkErrorException() argument
26 super(message, cause); in NetworkErrorException()
28 public NetworkErrorException(Throwable cause) { in NetworkErrorException() argument
29 super(cause); in NetworkErrorException()
DOperationCanceledException.java25 public OperationCanceledException(String message, Throwable cause) { in OperationCanceledException() argument
26 super(message, cause); in OperationCanceledException()
28 public OperationCanceledException(Throwable cause) { in OperationCanceledException() argument
29 super(cause); in OperationCanceledException()
DAuthenticatorException.java26 public AuthenticatorException(String message, Throwable cause) { in AuthenticatorException() argument
27 super(message, cause); in AuthenticatorException()
29 public AuthenticatorException(Throwable cause) { in AuthenticatorException() argument
30 super(cause); in AuthenticatorException()
DAccountsException.java26 public AccountsException(String message, Throwable cause) { in AccountsException() argument
27 super(message, cause); in AccountsException()
29 public AccountsException(Throwable cause) { in AccountsException() argument
30 super(cause); in AccountsException()
/frameworks/base/tests/SystemMemoryTest/host/src/com/android/tests/sysmem/host/
DTestException.java24 TestException(Exception cause) { in TestException() argument
25 super(cause); in TestException()
32 TestException(String msg, Exception cause) { in TestException() argument
33 super(msg, cause); in TestException()
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/certificate/
DCertValidationException.java26 public CertValidationException(Exception cause) { in CertValidationException() argument
27 super(cause); in CertValidationException()
30 public CertValidationException(String message, Exception cause) { in CertValidationException() argument
31 super(message, cause); in CertValidationException()
DCertParsingException.java26 public CertParsingException(Exception cause) { in CertParsingException() argument
27 super(cause); in CertParsingException()
30 public CertParsingException(String message, Exception cause) { in CertParsingException() argument
31 super(message, cause); in CertParsingException()
/frameworks/libs/service_entitlement/java/com/android/libraries/entitlement/
DServiceEntitlementException.java131 public ServiceEntitlementException(int error, String message, Throwable cause) { in ServiceEntitlementException() argument
132 this(error, HTTP_STATUS_UNSPECIFIED, RETRY_AFTER_UNSPECIFIED, message, cause); in ServiceEntitlementException()
135 public ServiceEntitlementException(int error, int httpStatus, String message, Throwable cause) { in ServiceEntitlementException() argument
136 this(error, httpStatus, RETRY_AFTER_UNSPECIFIED, message, cause); in ServiceEntitlementException()
140 int error, int httpStatus, String retryAfter, String message, Throwable cause) { in ServiceEntitlementException() argument
141 super(message, cause); in ServiceEntitlementException()
/frameworks/base/core/java/android/os/strictmode/
DViolation.java35 final Throwable cause = getCause(); in hashCode() local
38 hashCode = hashCode * 37 + (cause != null ? cause.toString().hashCode() : 0); in hashCode()
45 public synchronized Throwable initCause(Throwable cause) { in initCause() argument
47 return super.initCause(cause); in initCause()
/frameworks/base/core/java/android/app/
DRemoteServiceException.java40 public RemoteServiceException(String msg, Throwable cause) { in RemoteServiceException() argument
41 super(msg, cause); in RemoteServiceException()
57 public ForegroundServiceDidNotStartInTimeException(String msg, Throwable cause) { in ForegroundServiceDidNotStartInTimeException() argument
58 super(msg, cause); in ForegroundServiceDidNotStartInTimeException()
84 public ForegroundServiceDidNotStopInTimeException(String msg, Throwable cause) { in ForegroundServiceDidNotStopInTimeException() argument
85 super(msg, cause); in ForegroundServiceDidNotStopInTimeException()
/frameworks/base/keystore/java/android/security/keystore/
DSecureKeyImportUnavailableException.java38 public SecureKeyImportUnavailableException(String message, Throwable cause) { in SecureKeyImportUnavailableException() argument
39 super(message, cause); in SecureKeyImportUnavailableException()
42 public SecureKeyImportUnavailableException(Throwable cause) { in SecureKeyImportUnavailableException() argument
43 super(cause); in SecureKeyImportUnavailableException()
DStrongBoxUnavailableException.java41 public StrongBoxUnavailableException(String message, Throwable cause) { in StrongBoxUnavailableException() argument
42 super(message, cause); in StrongBoxUnavailableException()
45 public StrongBoxUnavailableException(Throwable cause) { in StrongBoxUnavailableException() argument
46 super(cause); in StrongBoxUnavailableException()

12345678910>>...15