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

/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/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 DMmsHttpException.java32 public MmsHttpException(Throwable cause) { argument
33 super(cause);
36 public MmsHttpException(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);
/packages/apps/Mms/src/com/android/mms/
H A DContentRestrictionException.java34 public ContentRestrictionException(Exception cause) { argument
35 super(cause);
/packages/apps/Camera2/src_pd/com/android/camera/util/
H A DUsageStatistics.java42 public void mediaInteraction(String ref, int interactionType, int cause, float age) { argument
69 public void cameraFailure(int cause, String info) { argument
/packages/apps/Gallery2/src_pd/com/android/gallery3d/util/
H A DUsageStatistics.java49 public static void setPendingTransitionCause(String cause) {} argument
/packages/services/Mms/src/com/android/mms/service/http/
H A DNetworkAwareClientConnectionOperator.java171 ConnectException cause = ex instanceof ConnectException
175 throw new HttpHostConnectException(target, cause);
/packages/services/Telephony/src/com/android/phone/
H A DCallLogger.java91 final int cause = c.getDisconnectCause();
97 callLogType = (cause == DisconnectCause.INCOMING_MISSED ?
H A DCallNotifier.java480 log("onDisconnect: cause = " + DisconnectCause.toString(c.getDisconnectCause())
524 int cause = c.getDisconnectCause();
525 if ((cause == DisconnectCause.NORMAL) // remote hangup
526 || (cause == DisconnectCause.LOCAL)) { // local hangup
568 final int cause = c.getDisconnectCause();
572 && (cause != DisconnectCause.INCOMING_MISSED )
573 && (cause != DisconnectCause.NORMAL)
574 && (cause != DisconnectCause.LOCAL)
575 && (cause != DisconnectCause.INCOMING_REJECTED)) {
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
/packages/apps/InCallUI/src/com/android/incallui/
H A DCallList.java445 final int cause = call.getDisconnectCause().getCode();
447 switch (cause) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DKeyboardLayoutSet.java90 public KeyboardLayoutSetException(final Throwable cause, final KeyboardId keyboardId) { argument
91 super(cause);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherBackupHelper.java997 // If we read a byte that is not ours, we will cause trouble: b/12491813
1189 private KeyParsingException(Throwable cause) { argument
1190 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 530 milliseconds