Searched defs:cause (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/core/java/android/accounts/
H A DAccountsException.java26 public AccountsException(String message, Throwable cause) { argument
27 super(message, cause);
29 public AccountsException(Throwable cause) { argument
30 super(cause);
H A DAuthenticatorException.java26 public AuthenticatorException(String message, Throwable cause) { argument
27 super(message, cause);
29 public AuthenticatorException(Throwable cause) { argument
30 super(cause);
H A DNetworkErrorException.java25 public NetworkErrorException(String message, Throwable cause) { argument
26 super(message, cause);
28 public NetworkErrorException(Throwable cause) { argument
29 super(cause);
H A DOperationCanceledException.java25 public OperationCanceledException(String message, Throwable cause) { argument
26 super(message, cause);
28 public OperationCanceledException(Throwable cause) { argument
29 super(cause);
/frameworks/base/core/java/android/os/
H A DBadParcelableException.java28 public BadParcelableException(Exception cause) { argument
29 super(cause);
H A DLooper.java210 HandlerException(Message message, Throwable cause) { argument
211 super(createMessage(cause), cause);
214 static String createMessage(Throwable cause) { argument
215 String causeMsg = cause.getMessage();
217 causeMsg = cause.toString();
H A DProcess.java37 ZygoteStartFailedEx(Throwable cause) {super(cause);} argument
/frameworks/base/core/java/android/util/
H A DAndroidException.java30 public AndroidException(Exception cause) { argument
31 super(cause);
H A DAndroidRuntimeException.java30 public AndroidRuntimeException(Exception cause) { argument
31 super(cause);
H A DLog.java88 TerribleFailure(String msg, Throwable cause) { super(msg, cause); } argument
/frameworks/base/awt/javax/imageio/
H A DIIOException.java53 * @param cause
54 * the cause of this exception.
56 public IIOException(String message, Throwable cause) { argument
58 initCause(cause);
/frameworks/base/awt/javax/imageio/metadata/
H A DIIOInvalidTreeException.java56 * @param cause
57 * the cause of this exception.
61 public IIOInvalidTreeException(String message, Throwable cause, Node offendingNode) { argument
62 super(message, cause);
/frameworks/base/core/java/android/content/
H A DOperationApplicationException.java34 public OperationApplicationException(String message, Throwable cause) { argument
35 super(message, cause);
38 public OperationApplicationException(Throwable cause) { argument
39 super(cause);
H A DIntentSender.java74 public SendIntentException(Exception cause) { argument
75 super(cause);
/frameworks/base/core/java/com/google/android/mms/
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...]
/frameworks/base/core/java/android/app/
H A DApplicationErrorReport.java305 // Populate fields with the "root cause" exception
374 public String cause; field in class:ApplicationErrorReport.AnrInfo
392 cause = in.readString();
401 dest.writeString(cause);
410 pw.println(prefix + "cause: " + cause);
H A DPendingIntent.java108 public CanceledException(Exception cause) { argument
109 super(cause);
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaInformationRecords.java232 public byte cause; field in class:CdmaInformationRecords.CdmaT53ClirInfoRec
234 public CdmaT53ClirInfoRec(int cause) { argument
235 this.cause = (byte)cause;
241 " cause: " + cause +
H A DCdmaConnection.java77 DisconnectCause cause = DisconnectCause.NOT_DISCONNECTED; field in class:CdmaConnection
277 return cause;
382 cause = DisconnectCause.LOCAL;
388 * See 22.001 Annex F.4 for mapping of cause codes
451 onDisconnect(DisconnectCause cause) { argument
452 this.cause = cause;
457 "[CDMAConn] onDisconnect: cause=" + cause);
H A DCdmaDataConnectionTracker.java565 * Returns true if the last fail cause is something that
570 shouldPostNotification(FailCause cause) { argument
571 return (cause != FailCause.UNKNOWN);
729 FailCause cause = (FailCause) (ar.result);
730 if(DBG) log("Data Connection setup failed " + cause);
733 if (cause.isPermanentFail()) {
734 notifyNoData(cause);
737 startDelayedRetry(cause, reason);
984 private void startDelayedRetry(FailCause cause, String reason) { argument
985 notifyNoData(cause);
[all...]
/frameworks/base/core/java/android/pim/
H A DICalendar.java51 public FormatException(String msg, Throwable cause) { argument
52 super(msg, cause);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DDataConnection.java322 * @param cause
324 private void notifyConnectCompleted(ConnectionParams cp, FailCause cause) { argument
333 if (cause == FailCause.NONE) {
337 lastFailCause = cause;
339 AsyncResult.forMessage(connectionCompletedMsg, cause, new Exception());
341 if (DBG) log("notifyConnection at " + timeStamp + " cause=" + cause);
500 public void setEnterNotificationParams(ConnectionParams cp, FailCause cause) { argument
501 log("DcInactiveState: setEnterNoticationParams cp,cause");
503 mFailCause = cause;
669 setEnterNotificationParams(ConnectionParams cp, FailCause cause) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmConnection.java73 DisconnectCause cause = DisconnectCause.NOT_DISCONNECTED; field in class:GsmConnection
223 return cause;
328 cause = DisconnectCause.LOCAL;
334 * See 22.001 Annex F.4 for mapping of cause codes
398 onDisconnect(DisconnectCause cause) { argument
399 this.cause = cause;
409 "[GSMConn] onDisconnect: cause=" + cause);
H A DGsmDataConnectionTracker.java973 * Returns true if the last fail cause is something that
977 private boolean shouldPostNotification(GsmDataConnection.FailCause cause) { argument
978 return (cause != GsmDataConnection.FailCause.UNKNOWN);
1147 GsmDataConnection.FailCause cause;
1148 cause = (GsmDataConnection.FailCause) (ar.result);
1149 if(DBG) log("PDP setup failed " + cause);
1151 if (cause.isEventLoggable()) {
1154 cause.ordinal(), loc != null ? loc.getCid() : -1,
1159 if (cause.isPermanentFail()) {
1160 notifyNoData(cause);
1389 startDelayedRetry(GsmDataConnection.FailCause cause, String reason) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java709 * cause code returned as Integer in Message.obj.response
710 * Returns integer cause code defined in TS 24.008
1023 public void acknowledgeLastIncomingGsmSms(boolean success, int cause, Message result) { argument
1027 public void acknowledgeLastIncomingCdmaSms(boolean success, int cause, Message result) { argument

Completed in 164 milliseconds

12