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

1234

/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParserImpl_V30.java20 import com.android.vcard.exception.VCardException;
H A DVCardUtils.java18 import com.android.vcard.exception.VCardException;
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardParserTests.java22 import com.android.vcard.exception.VCardException;
/frameworks/base/media/jni/
H A Dandroid_media_MediaPlayer.cpp119 ALOGW("An exception occurred while notifying an event.");
148 // If exception is NULL and opStatus is not OK, this method sends an error
149 // event to the client application; otherwise, if exception is not NULL and
150 // opStatus is not OK, this method throws the given exception to the client
152 static void process_media_player_call(JNIEnv *env, jobject thiz, status_t opStatus, const char* exception, const char *message) argument
154 if (exception == NULL) { // Don't throw exception. Instead, send an event.
159 } else { // Throw exception!
167 jniThrowException( env, exception, message);
172 jniThrowException( env, exception, ms
[all...]
H A Dandroid_media_MediaCodec.cpp311 jthrowable exception = local
314 env->Throw(exception);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSMSDispatcher.java306 if (ar.exception != null) {
307 Log.e(TAG, "Exception processing incoming SMS. Exception:" + ar.exception);
427 if (ar.exception == null) {
464 } else if ((((CommandException)(ar.exception)).getCommandError()
481 if (((CommandException)(ar.exception)).getCommandError()
H A DPhoneProxy.java102 if (ar.exception == null && ar.result != null) {
105 logd("Unexpected exception on EVENT_RIL_CONNECTED");
113 if (ar.exception == null) {
121 loge("Voice Radio Technology event " + msg.what + " exception!" + ar.exception);
H A DPhoneBase.java307 if (ar.exception == null) {
598 * @exception RuntimeException if the current thread is not
H A DDataConnectionTracker.java385 if (ar.exception != null) {
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DGSMPhoneTest.java1644 assertNull(ar.exception);
1706 assertNull(ar.exception);
1725 assertNull(ar.exception);
1802 assertNull(ar.exception);
1814 assertNull(ar.exception);
1827 assertNull(ar.exception);
1839 assertNull(ar.exception);
1852 assertNull(ar.exception);
1869 assertNull(ar.exception);
/frameworks/base/test-runner/src/android/test/
H A DTestRunner.java216 public void failed(String className, Throwable exception) { argument
220 mListeners.get(i).failed(className, exception);
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DVCardVerifier.java32 import com.android.vcard.exception.VCardException;
254 // exception contents exists, we expect an exception to occur.
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java131 * necessary) and either returns the result or throws an exception if an error
1320 final IllegalStateException exception = new IllegalStateException(
1323 exception);
1325 throw exception;
1527 // we will set the exception below
1529 // we will set the exception below
/frameworks/base/core/jni/
H A Dandroid_view_Surface.cpp401 const char* const exception = (err == NO_MEMORY) ? local
404 jniThrowException(env, exception, NULL);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java438 * ar.exception carries exception on failure
465 * ar.exception carries exception on failure
476 * ar.exception carries exception on failure
493 * ar.exception carries exception on failure
513 * ar.exception carries exception o
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmDataConnectionTracker.java1213 if (ar.exception != null) {
1217 if (DBG) log("onDataStateChanged(ar): exception; likely radio not available, ignore");
1871 if (ar.exception instanceof DataConnection.CallSetupException) {
1873 ((DataConnection.CallSetupException)ar.exception).getRetryOverride();
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css489 .params, .retval, .exception, .tparams {
/frameworks/base/core/java/android/webkit/
H A DBrowserFrame.java1171 } catch(IndexOutOfBoundsException exception) {

Completed in 4400 milliseconds

1234