Searched refs:exception (Results 51 - 75 of 93) sorted by relevance

1234

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsStorageMonitor.java108 if (ar.exception != null) {
H A DIccRecords.java227 * ((AsyncResult)onComplete.obj).exception == null on success
228 * ((AsyncResult)onComplete.obj).exception != null on fail
282 * ((AsyncResult)onComplete.obj).exception == null on success
283 * ((AsyncResult)onComplete.obj).exception != null on fail
341 if (ar.exception != null) {
342 loge("Record Load Exception: " + ar.exception);
H A DDataConnection.java59 * with the <code>AsyncResult.result == null</code> and <code>AsyncResult.exception == null</code>.
61 * <code>AsyncResult.exception = new Exception()</code>.
546 if (ar.exception != null) {
548 log("onSetupConnectionCompleted failed, ar.exception=" + ar.exception +
552 if (ar.exception instanceof CommandException
553 && ((CommandException) (ar.exception)).getCommandError()
582 if (ar.exception == null) {
792 if (ar.exception == null) {
799 log("Unexpected exception o
[all...]
H A DServiceStateTracker.java272 * an AsyncResult, and onComplete.obj.exception will be non-null
519 if ((ar.exception == null) && (ar.result != null)) {
524 log("onSignalStrengthResult() Exception from RIL : " + ar.exception);
635 * @exception RuntimeException if the current thread is not
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimPhoneBookManager.java341 if (ar.exception == null) {
351 if (ar.exception == null) {
361 if (ar.exception == null) {
371 if (ar.exception == null) {
H A DUsimDataDownloadHandler.java252 if (ar.exception != null) {
253 Log.e(TAG, "UICC Send Envelope failure, exception: " + ar.exception);
H A DGsmMmiCode.java215 //Is a country-specific exception to short codes as defined in TS 22.030, 6.5.3.2
906 if ((ar.exception == null) && (msg.arg1 == 1)) {
934 if (ar.exception != null) {
957 if (ar.exception instanceof CommandException) {
958 CommandException.Error err = ((CommandException)(ar.exception)).getCommandError();
995 if (ar.exception != null) {
997 if (ar.exception instanceof CommandException) {
998 CommandException.Error err = ((CommandException)(ar.exception)).getCommandError();
1070 if (ar.exception != null) {
1242 if (ar.exception !
[all...]
H A DGsmServiceStateTracker.java329 if (ar.exception == null) {
398 if (ar.exception == null) {
413 AsyncResult.forMessage(((Message) ar.userObj)).exception
414 = ar.exception;
422 if (ar.exception == null) {
583 if (ar.exception != null) {
586 if (ar.exception instanceof CommandException) {
587 err = ((CommandException)(ar.exception)).getCommandError();
604 ar.exception);
714 * There is an exception fo
[all...]
H A DGsmSMSDispatcher.java105 if (ar.exception == null) {
109 Log.d(TAG, "Failed to write SMS-PP message to UICC", ar.exception);
H A DGsmCallTracker.java416 if (ar.exception == null) {
418 } else if (isCommandExceptionRadioNotAvailable(ar.exception)) {
861 if (ar.exception != null) {
873 if (ar.exception != null) {
874 // An exception occurred...just treat the disconnect
/frameworks/base/core/jni/
H A DBindTest.cpp70 goto exception;
74 exception:
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
H A DVariableSpeed.java385 private void check(boolean condition, String exception) { argument
387 throw new IllegalStateException(exception);
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DBasicNetwork.java161 * request's retry policy, a timeout exception is thrown.
165 VolleyError exception) throws VolleyError {
170 retryPolicy.retry(exception);
221 // This can happen if there was an exception above that left the entity in
164 attemptRetryOnException(String logPrefix, Request<?> request, VolleyError exception) argument
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParserImpl_V21.java22 import com.android.vcard.exception.VCardAgentNotSupportedException;
23 import com.android.vcard.exception.VCardException;
24 import com.android.vcard.exception.VCardInvalidCommentLineException;
25 import com.android.vcard.exception.VCardInvalidLineException;
26 import com.android.vcard.exception.VCardVersionException;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java401 Throwable exception = null;
407 exception = e;
409 exception = e;
412 if (exception != null) {
417 Log.w(TAG, "Unable to load wallpaper!", exception);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaServiceStateTracker.java340 if (ar.exception == null) {
394 if (ar.exception == null) {
461 if (ar.exception == null) {
474 if (ar.exception == null) {
487 if (ar.exception == null) {
720 if (ar.exception != null) {
723 if (ar.exception instanceof CommandException) {
724 err = ((CommandException)(ar.exception)).getCommandError();
741 + ar.exception);
H A DCDMAPhone.java600 AsyncResult.forMessage(response).exception = ce;
892 Log.d(LOG_TAG, "handleExitEmergencyCallbackMode,ar.exception , mIsPhoneInEcmState "
893 + ar.exception + mIsPhoneInEcmState);
902 if (ar.exception == null) {
966 if (ar.exception != null) {
978 if (ar.exception != null) {
1045 if (IccException.class.isInstance(ar.exception)) {
1047 ar.exception = null;
1051 AsyncResult.forMessage(onComplete, ar.result, ar.exception);
1252 // extracted from dialStr will not cause any exception
[all...]
H A DCdmaCallTracker.java480 if (ar.exception == null) {
482 } else if (isCommandExceptionRadioNotAvailable(ar.exception)) {
981 if (ar.exception != null) {
982 // An exception occurred...just treat the disconnect
1029 if (ar.exception == null) {
1037 if (ar.exception == null) {
H A DCDMALTEPhone.java190 AsyncResult.forMessage(nsm.message, ar.result, ar.exception);
H A DCdmaDataConnectionTracker.java621 if (ar.exception instanceof DataConnection.CallSetupException) {
623 ((DataConnection.CallSetupException)ar.exception).getRetryOverride();
771 if (ar.exception != null) {
811 if (ar.exception != null) {
/frameworks/base/media/jni/
H A Dandroid_media_MediaMetadataRetriever.cpp50 static void process_media_retriever_call(JNIEnv *env, status_t opStatus, const char* exception, const char *message) argument
57 jniThrowException( env, exception, message);
62 jniThrowException( env, exception, msg);
104 if (!tmp) { // OutOfMemoryError exception already thrown
325 if (!array) { // OutOfMemoryError exception has already been thrown.
H A Dandroid_media_MediaRecorder.cpp116 // Returns true if it throws an exception.
117 static bool process_media_recorder_call(JNIEnv *env, status_t opStatus, const char* exception, const char* message) argument
124 jniThrowException(env, exception, message);
/frameworks/base/tools/aidl/
H A DAST.h273 Variable* exception; member in struct:CatchStatement
275 CatchStatement(Variable* exception);
H A DAST.cpp591 exception(e)
603 if (this->exception != NULL) {
605 this->exception->WriteDeclaration(to);
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeResources.java431 // return exception below
655 NotFoundException exception = new NotFoundException();
656 exception.initCause(e);
657 throw exception;

Completed in 4846 milliseconds

1234