Home
last modified time | relevance | path

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

1234

/packages/apps/UnifiedEmail/src/org/apache/commons/io/
DIOExceptionWithCause.java49 public IOExceptionWithCause(String message, Throwable cause) { in IOExceptionWithCause() argument
51 this.initCause(cause); in IOExceptionWithCause()
64 public IOExceptionWithCause(Throwable cause) { in IOExceptionWithCause() argument
65 super(cause == null ? null : cause.toString()); in IOExceptionWithCause()
66 this.initCause(cause); in IOExceptionWithCause()
/packages/services/Car/car-lib/src/android/car/
DCarNotConnectedException.java33 public CarNotConnectedException(String name, Throwable cause) { in CarNotConnectedException() argument
34 super(name, cause); in CarNotConnectedException()
37 public CarNotConnectedException(Exception cause) { in CarNotConnectedException() argument
38 super(cause); in CarNotConnectedException()
DCarNotSupportedException.java33 public CarNotSupportedException(String name, Throwable cause) { in CarNotSupportedException() argument
34 super(name, cause); in CarNotSupportedException()
37 public CarNotSupportedException(Exception cause) { in CarNotSupportedException() argument
38 super(cause); in CarNotSupportedException()
/packages/apps/Nfc/src/com/android/nfc/snep/
DSnepException.java25 public SnepException(Exception cause) { in SnepException() argument
26 super(cause); in SnepException()
29 public SnepException(String message, Exception cause) { in SnepException() argument
30 super(message, cause); in SnepException()
/packages/apps/Camera2/src/com/android/camera/one/
DOneCameraAccessException.java26 public OneCameraAccessException(String message, Throwable cause) { in OneCameraAccessException() argument
27 super(message, cause); in OneCameraAccessException()
30 public OneCameraAccessException(Throwable cause) { in OneCameraAccessException() argument
31 super(cause); in OneCameraAccessException()
/packages/apps/Messaging/src/android/support/v7/mms/
DApnException.java32 public ApnException(Throwable cause) { in ApnException() argument
33 super(cause); in ApnException()
36 public ApnException(String message, Throwable cause) { in ApnException() argument
37 super(message, cause); in ApnException()
DMmsNetworkException.java32 public MmsNetworkException(Throwable cause) { in MmsNetworkException() argument
33 super(cause); in MmsNetworkException()
36 public MmsNetworkException(String message, Throwable cause) { in MmsNetworkException() argument
37 super(message, cause); in MmsNetworkException()
DMmsHttpException.java37 public MmsHttpException(int statusCode, Throwable cause) { in MmsHttpException() argument
38 super(cause); in MmsHttpException()
42 public MmsHttpException(int statusCode, String message, Throwable cause) { in MmsHttpException() argument
43 super(message, cause); in MmsHttpException()
/packages/services/Car/car-support-lib/src/android/support/car/
DCarNotSupportedException.java33 public CarNotSupportedException(String name, Throwable cause) { in CarNotSupportedException() argument
34 super(name, cause); in CarNotSupportedException()
37 public CarNotSupportedException(Exception cause) { in CarNotSupportedException() argument
38 super(cause); in CarNotSupportedException()
DCarNotConnectedException.java33 public CarNotConnectedException(String name, Throwable cause) { in CarNotConnectedException() argument
34 super(name, cause); in CarNotConnectedException()
37 public CarNotConnectedException(Exception cause) { in CarNotConnectedException() argument
38 super(cause); in CarNotConnectedException()
DCar.java166 public void onServiceSuspended(int cause) {
167 mServiceConnectionListenerClient.onServiceSuspended(cause);
170 public void onServiceConnectionFailed(int cause) {
171 mServiceConnectionListenerClient.onServiceConnectionFailed(cause);
DServiceConnectionListener.java29 void onServiceSuspended(int cause); in onServiceSuspended() argument
31 void onServiceConnectionFailed(int cause); in onServiceConnectionFailed() argument
/packages/services/Mms/src/com/android/mms/service/exception/
DApnException.java32 public ApnException(Throwable cause) { in ApnException() argument
33 super(cause); in ApnException()
36 public ApnException(String message, Throwable cause) { in ApnException() argument
37 super(message, cause); in ApnException()
DMmsNetworkException.java32 public MmsNetworkException(Throwable cause) { in MmsNetworkException() argument
33 super(cause); in MmsNetworkException()
36 public MmsNetworkException(String message, Throwable cause) { in MmsNetworkException() argument
37 super(message, cause); in MmsNetworkException()
DMmsHttpException.java37 public MmsHttpException(int statusCode, Throwable cause) { in MmsHttpException() argument
38 super(cause); in MmsHttpException()
42 public MmsHttpException(int statusCode, String message, Throwable cause) { in MmsHttpException() argument
43 super(message, cause); in MmsHttpException()
/packages/apps/Messaging/src/com/android/messaging/mmslib/
DMmsException.java47 public MmsException(Throwable cause) { in MmsException() argument
48 super(cause); in MmsException()
57 public MmsException(String message, Throwable cause) { in MmsException() argument
58 super(message, cause); in MmsException()
/packages/apps/Messaging/src/com/android/messaging/sms/
DSmsException.java46 public SmsException(Throwable cause) { in SmsException() argument
47 super(cause); in SmsException()
56 public SmsException(String message, Throwable cause) { in SmsException() argument
57 super(message, cause); in SmsException()
DMmsFailureException.java81 public MmsFailureException(final int retryHint, Throwable cause) { in MmsFailureException() argument
82 super(cause); in MmsFailureException()
96 public MmsFailureException(final int retryHint, String message, Throwable cause) { in MmsFailureException() argument
97 super(message, cause); in MmsFailureException()
/packages/apps/Messaging/src/android/support/v7/mms/pdu/
DMmsException.java47 public MmsException(Throwable cause) { in MmsException() argument
48 super(cause); in MmsException()
57 public MmsException(String message, Throwable cause) { in MmsException() argument
58 super(message, cause); in MmsException()
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
DCameraCaptureSessionClosedException.java32 public CameraCaptureSessionClosedException(String message, Throwable cause) { in CameraCaptureSessionClosedException() argument
33 super(message, cause); in CameraCaptureSessionClosedException()
36 public CameraCaptureSessionClosedException(Throwable cause) { in CameraCaptureSessionClosedException() argument
37 super(cause); in CameraCaptureSessionClosedException()
/packages/services/Car/tests/android_support_car_api_test/src/com/android/support/car/apitest/
DCarApiTestBase.java67 public void onServiceSuspended(int cause) { in onServiceSuspended() argument
77 public void onServiceConnectionFailed(int cause) { in onServiceConnectionFailed() argument
DCarPackageManagerTest.java42 public void onServiceSuspended(int cause) {
52 public void onServiceConnectionFailed(int cause) {
/packages/services/Car/car-support-lib/src/android/support/car/app/
DCarProxyActivity.java65 public void onServiceSuspended(int cause) {
66 Log.w(TAG, "Car service suspended: " + cause);
75 public void onServiceConnectionFailed(int cause) {
76 Log.w(TAG, "Car service connection failed: " + cause);
/packages/apps/Camera2/src_pd/com/android/camera/stats/
DUsageStatistics.java45 public void mediaInteraction(String ref, int interactionType, int cause, float age) { in mediaInteraction() argument
83 public void cameraFailure(int cause, String info, int agentAction, int agentState) { in cameraFailure() argument
/packages/services/Telephony/src/com/android/phone/
DEmergencyCallHelper.java238 int cause = conn.getDisconnectCause(); in onDisconnect() local
241 + "', cause = " + DisconnectCause.toString(cause)); in onDisconnect()
243 if (cause == DisconnectCause.OUT_OF_SERVICE) { in onDisconnect()

1234