Searched refs:exception (Results 26 - 50 of 93) sorted by relevance

1234

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DUiccCardApplication.java209 if (ar.exception != null) {
210 if (DBG) log("Error in querying facility lock:" + ar.exception);
226 if (ar.exception == null) {
231 loge("Error change facility fdn with exception " + ar.exception);
234 AsyncResult.forMessage(response).exception = ar.exception;
252 if(ar.exception != null) {
253 if (DBG) log("Error in querying facility lock:" + ar.exception);
298 if (ar.exception
[all...]
H A DIccCardProxy.java525 AsyncResult.forMessage(onComplete).exception = e;
539 AsyncResult.forMessage(onComplete).exception = e;
553 AsyncResult.forMessage(onComplete).exception = e;
567 AsyncResult.forMessage(onComplete).exception = e;
581 AsyncResult.forMessage(onComplete).exception = e;
612 AsyncResult.forMessage(onComplete).exception = e;
626 AsyncResult.forMessage(onComplete).exception = e;
640 AsyncResult.forMessage(onComplete).exception = e;
654 AsyncResult.forMessage(onComplete).exception = e;
H A DIccPhoneBookInterfaceManager.java60 if (ar.exception == null) {
75 success = (ar.exception == null);
82 if (ar.exception == null) {
/frameworks/base/test-runner/src/android/test/
H A DTestPrinter.java81 public void failed(String className, Throwable exception) { argument
83 Log.i(mTag, "----- begin exception -----");
84 Log.i(mTag, "", exception);
85 Log.i(mTag, "----- end exception -----");
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLog.java54 public void exception(Throwable t, String format, Object... args) { method in class:Log
H A DMain.java141 log.exception(e, "Failed to load jar");
159 log.exception(e, "Failed to load jar");
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DLogTest.java83 mLog.exception(e, "Test %d", 44);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParser_V21.java18 import com.android.vcard.exception.VCardException;
H A DVCardParser_V30.java18 import com.android.vcard.exception.VCardException;
H A DVCardParser_V40.java18 import com.android.vcard.exception.VCardException;
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java343 Exception exception = null;
387 exception = e;
397 exception = e;
410 Log.w(TAG, "updateAppWidget couldn't find any view, using error view", exception);
538 Exception exception = null;
567 exception = e;
569 exception = e;
572 if (exception != null) {
573 Log.w(TAG, "Error inflating AppWidget " + mInfo + ": " + exception.toString());
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSubscriptionSourceManager.java162 if ((ar.exception == null) && (ar.result != null)) {
179 logw("Unable to get CDMA Subscription Source, Exception: " + ar.exception
H A DRuimRecords.java173 AsyncResult.forMessage((onComplete)).exception =
451 if (ar.exception != null) {
452 loge("Exception querying IMSI, Exception:" + ar.exception);
478 if (ar.exception != null) {
496 if (ar.exception != null) {
508 if (ar.exception != null) {
509 Log.i(LOG_TAG, "RuimRecords update failed", ar.exception);
528 if (ar.exception == null) {
H A DRuimSmsInterfaceManager.java63 mSuccess = (ar.exception == null);
70 if (ar.exception == null) {
H A DCdmaMmiCode.java262 if (ar.exception != null) {
264 if (ar.exception instanceof CommandException) {
265 CommandException.Error err = ((CommandException)(ar.exception)).getCommandError();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccController.java43 * and throws an exception if called multiple times.
203 if (ar.exception != null) {
206 + "never return an error", ar.exception);
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
H A DForwarder.java78 } catch (IOException exception) {
96 * don't get "Too may open files" exception. We also remove the ConnectionHandler
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DPropertyNodesVerifier.java22 import com.android.vcard.exception.VCardException;
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java115 } catch (FileNotFoundException exception) {
117 } catch (IOException exception) {
119 } catch (IllegalArgumentException exception) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSimSmsInterfaceManager.java76 mSuccess = (ar.exception == null);
83 if (ar.exception == null) {
97 mSuccess = (ar.exception == null);
H A DGSMPhone.java1083 * The exception is cancellation of an incoming USSD-REQUEST, which is
1198 if (ar.exception != null) {
1209 if (ar.exception != null) {
1219 if (ar.exception != null) {
1262 if (ar.exception == null && r != null) {
1267 AsyncResult.forMessage(onComplete, ar.result, ar.exception);
1274 if (IccVmNotSupportedException.class.isInstance(ar.exception)) {
1276 ar.exception = null;
1280 AsyncResult.forMessage(onComplete, ar.result, ar.exception);
1288 if (ar.exception
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DCameraWidgetFrame.java163 Exception exception = null;
172 exception = e;
174 exception = e;
176 if (exception != null) {
177 Log.w(TAG, "Error creating camera widget view", exception);
/frameworks/base/voip/java/com/android/server/sip/
H A DSipSessionGroup.java414 private Throwable getRootCause(Throwable exception) { argument
415 Throwable cause = exception.getCause();
417 exception = cause;
418 cause = exception.getCause();
420 return exception;
1395 private void onError(Throwable exception) { argument
1396 exception = getRootCause(exception);
1397 onError(getErrorCode(exception), exception
1436 getErrorCode(Throwable exception) argument
1457 onRegistrationFailed(Throwable exception) argument
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DSSLSocketTest.java630 private Exception exception; field in class:SSLSocketTest.TestServer
687 exception = ex;
692 return exception;
709 private Exception exception; field in class:SSLSocketTest.TestClient
749 exception = ex;
754 return exception;
802 // The server must have completed without an exception.
807 // The client must have completed without an exception.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletTicker.java271 Exception exception = null;
276 exception = e;
281 Slog.e(TAG, "couldn't inflate view for notification " + ident, exception);

Completed in 1708 milliseconds

1234