Searched refs:cause (Results 1 - 25 of 26) sorted by relevance

12

/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DIOExceptionWithCause.java38 * Constructs a new instance with the given message and cause.
40 * As specified in {@link Throwable}, the message in the given <code>cause</code> is not used in this instance's
46 * @param cause
47 * the cause (see {@link #getCause()}). A <code>null</code> value is allowed.
49 public IOExceptionWithCause(String message, Throwable cause) { argument
51 this.initCause(cause);
55 * Constructs a new instance with the given cause.
57 * The message is set to <code>cause==null ? null : cause.toString()</code>, which by default contains the class
58 * and message of <code>cause</cod
64 IOExceptionWithCause(Throwable cause) argument
[all...]
/packages/apps/Camera2/src/com/android/camera/one/
H A DOneCameraAccessException.java26 public OneCameraAccessException(String message, Throwable cause) { argument
27 super(message, cause);
30 public OneCameraAccessException(Throwable cause) { argument
31 super(cause);
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DCameraCaptureSessionClosedException.java32 public CameraCaptureSessionClosedException(String message, Throwable cause) { argument
33 super(message, cause);
36 public CameraCaptureSessionClosedException(Throwable cause) { argument
37 super(cause);
/packages/apps/Messaging/src/android/support/v7/mms/
H A DApnException.java32 public ApnException(Throwable cause) { argument
33 super(cause);
36 public ApnException(String message, Throwable cause) { argument
37 super(message, cause);
H A DMmsNetworkException.java32 public MmsNetworkException(Throwable cause) { argument
33 super(cause);
36 public MmsNetworkException(String message, Throwable cause) { argument
37 super(message, cause);
H A DMmsHttpException.java37 public MmsHttpException(int statusCode, Throwable cause) { argument
38 super(cause);
42 public MmsHttpException(int statusCode, String message, Throwable cause) { argument
43 super(message, cause);
/packages/apps/Messaging/src/android/support/v7/mms/pdu/
H A DMmsException.java43 * Creates a new MmsException with the specified cause.
45 * @param cause the cause.
47 public MmsException(Throwable cause) { argument
48 super(cause);
52 * Creates a new MmsException with the specified detail message and cause.
55 * @param cause the cause.
57 public MmsException(String message, Throwable cause) { argument
58 super(message, cause);
[all...]
/packages/apps/Messaging/src/com/android/messaging/mmslib/
H A DMmsException.java43 * Creates a new MmsException with the specified cause.
45 * @param cause the cause.
47 public MmsException(Throwable cause) { argument
48 super(cause);
52 * Creates a new MmsException with the specified detail message and cause.
55 * @param cause the cause.
57 public MmsException(String message, Throwable cause) { argument
58 super(message, cause);
[all...]
/packages/apps/Messaging/src/com/android/messaging/sms/
H A DSmsException.java42 * Creates a new SmsException with the specified cause.
44 * @param cause the cause.
46 public SmsException(Throwable cause) { argument
47 super(cause);
51 * Creates a new SmsException with the specified detail message and cause.
54 * @param cause the cause.
56 public SmsException(String message, Throwable cause) { argument
57 super(message, cause);
[all...]
H A DMmsFailureException.java76 * Creates a new MmsFailureException with the specified cause.
79 * @param cause the cause.
81 public MmsFailureException(final int retryHint, Throwable cause) { argument
82 super(cause);
90 * with the specified detail message and cause.
94 * @param cause the cause.
96 public MmsFailureException(final int retryHint, String message, Throwable cause) { argument
97 super(message, cause);
[all...]
/packages/apps/Nfc/src/com/android/nfc/snep/
H A DSnepException.java25 public SnepException(Exception cause) { argument
26 super(cause);
29 public SnepException(String message, Exception cause) { argument
30 super(message, cause);
/packages/services/Mms/src/com/android/mms/service/exception/
H A DApnException.java32 public ApnException(Throwable cause) { argument
33 super(cause);
36 public ApnException(String message, Throwable cause) { argument
37 super(message, cause);
H A DMmsNetworkException.java32 public MmsNetworkException(Throwable cause) { argument
33 super(cause);
36 public MmsNetworkException(String message, Throwable cause) { argument
37 super(message, cause);
H A DMmsHttpException.java37 public MmsHttpException(int statusCode, Throwable cause) { argument
38 super(cause);
42 public MmsHttpException(int statusCode, String message, Throwable cause) { argument
43 super(message, cause);
/packages/apps/Camera2/src_pd/com/android/camera/stats/
H A DUsageStatistics.java45 public void mediaInteraction(String ref, int interactionType, int cause, float age) { argument
83 public void cameraFailure(int cause, String info, int agentAction, int agentState) { argument
/packages/apps/Gallery2/src_pd/com/android/gallery3d/util/
H A DUsageStatistics.java49 public static void setPendingTransitionCause(String cause) {} argument
/packages/services/Telephony/src/com/android/phone/
H A DCallLogger.java91 final int cause = c.getDisconnectCause();
97 callLogType = (cause == DisconnectCause.INCOMING_MISSED ?
H A DEmergencyCallHelper.java234 * disconnect cause OUT_OF_SERVICE. If so, schedule a retry.
238 int cause = conn.getDisconnectCause();
241 + "', cause = " + DisconnectCause.toString(cause));
243 if (cause == DisconnectCause.OUT_OF_SERVICE) {
249 // Any other disconnect cause means we're done.
399 // with cause==OUT_OF_SERVICE. If so, that will trigger a retry
H A DCallNotifier.java490 log("onDisconnect: cause = " + DisconnectCause.toString(c.getDisconnectCause())
536 int cause = c.getDisconnectCause();
537 if ((cause == DisconnectCause.NORMAL) // remote hangup
538 || (cause == DisconnectCause.LOCAL)) { // local hangup
580 final int cause = c.getDisconnectCause();
584 && (cause != DisconnectCause.INCOMING_MISSED )
585 && (cause != DisconnectCause.NORMAL)
586 && (cause != DisconnectCause.LOCAL)
587 && (cause != DisconnectCause.INCOMING_REJECTED)) {
/packages/services/Telecomm/src/com/android/server/telecom/
H A DCreateConnectionProcessor.java387 private boolean shouldFallbackToNoConnectionManager(DisconnectCause cause) { argument
398 if (cause.getCode() == DisconnectCause.CONNECTION_MANAGER_NOT_SUPPORTED) {
/packages/services/Telephony/src/com/android/services/telephony/
H A DTelephonyConnectionService.java380 int cause = android.telephony.DisconnectCause.OUTGOING_FAILURE;
382 cause = android.telephony.DisconnectCause.OUT_OF_SERVICE;
385 cause, e.getMessage()));
/packages/apps/InCallUI/src/com/android/incallui/
H A DCallList.java398 * the disconnect cause, and that any pending disconnects should immediately occur.
480 final int cause = call.getDisconnectCause().getCode();
482 switch (cause) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboardLayoutSet.java97 public KeyboardLayoutSetException(final Throwable cause, final KeyboardId keyboardId) { argument
98 super(cause);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherBackupHelper.java1023 // If we read a byte that is not ours, we will cause trouble: b/12491813
1158 @Thunk InvalidBackupException(Throwable cause) { argument
1159 super(cause);
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 1659 milliseconds

12