Home
last modified time | relevance | path

Searched refs:cause (Results 1 – 25 of 86) 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/apps/Dialer/java/com/android/incallui/disconnectdialog/
DDisconnectMessage.java39 private final DisconnectCause cause; field in DisconnectMessage
42 cause = call.getDisconnectCause(); in DisconnectMessage()
45 if (disconnectDialog.shouldShow(cause)) { in DisconnectMessage()
61 cause.getCode(), in toString()
62 cause.getDescription(), in toString()
63 cause.getReason(), in toString()
DEnableWifiCallingPrompt.java57 DisconnectCause cause = call.getDisconnectCause(); in createDialog() local
58 CharSequence message = cause.getDescription(); in createDialog()
/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()
/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/Messaging/src/android/support/v7/mms/
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()
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()
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/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/services/Car/car-support-lib/src/android/support/car/
DCarNotConnectedException.java35 public CarNotConnectedException(String name, Throwable cause) { in CarNotConnectedException() argument
36 super(name, cause); in CarNotConnectedException()
39 public CarNotConnectedException(Exception cause) { in CarNotConnectedException() argument
40 super(cause); in CarNotConnectedException()
/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/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/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/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/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()
DCallLogger.java91 final int cause = c.getDisconnectCause(); in logCall() local
97 callLogType = (cause == DisconnectCause.INCOMING_MISSED ? in logCall()
/packages/services/Telecomm/src/com/android/server/telecom/
DCreateConnectionProcessor.java405 private boolean shouldFailCallIfConnectionManagerFails(DisconnectCause cause) { in shouldFailCallIfConnectionManagerFails() argument
421 if (cause.getCode() == DisconnectCause.CONNECTION_MANAGER_NOT_SUPPORTED) { in shouldFailCallIfConnectionManagerFails()
436 "error: " + cause.getReason() + ". Not falling back to SIM."); in shouldFailCallIfConnectionManagerFails()
/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/apps/Dialer/java/com/android/voicemail/impl/sync/
DVvmNetworkRequest.java68 private RequestFailedException(Throwable cause) { in RequestFailedException() argument
69 super(cause); in RequestFailedException()
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DSelfManagedConnection.java185 public void setConnectionDisconnected(int cause) { in setConnectionDisconnected() argument
187 setDisconnected(new DisconnectCause(cause)); in setConnectionDisconnected()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/connserv/
DHfpClientConnection.java181 public synchronized void close(int cause) { in close() argument
189 setDisconnected(new DisconnectCause(cause)); in close()

1234