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

/frameworks/opt/vcard/java/com/android/vcard/exception/
H A DVCardAgentNotSupportedException.java16 package com.android.vcard.exception;
H A DVCardException.java16 package com.android.vcard.exception;
H A DVCardInvalidCommentLineException.java17 package com.android.vcard.exception;
H A DVCardInvalidLineException.java16 package com.android.vcard.exception;
H A DVCardNestedException.java17 package com.android.vcard.exception;
H A DVCardNotSupportedException.java16 package com.android.vcard.exception;
19 * The exception which tells that the input VCard is probably valid from the view of
H A DVCardVersionException.java16 package com.android.vcard.exception;
/frameworks/base/core/java/android/os/
H A DAsyncResult.java27 // Expect either exception or result to be null
29 public Throwable exception; field in class:AsyncResult
66 exception = ex;
H A DRegistrant.java56 notifyException(Throwable exception) argument
58 internalNotifyRegistrant (null, exception);
67 internalNotifyRegistrant (ar.result, ar.exception);
71 internalNotifyRegistrant (Object result, Throwable exception) argument
82 msg.obj = new AsyncResult(userObj, result, exception);
H A DRegistrantList.java76 internalNotifyRegistrants (Object result, Throwable exception) argument
80 r.internalNotifyRegistrant(result, exception);
91 notifyException(Throwable exception) argument
93 internalNotifyRegistrants (null, exception);
106 internalNotifyRegistrants(ar.result, ar.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
/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 -----");
H A DTestRunner.java216 public void failed(String className, Throwable exception) { argument
220 mListeners.get(i).failed(className, 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/base/media/mca/filterfw/java/android/filterfw/core/
H A DAsyncRunner.java48 public Exception exception; field in class:AsyncRunner.RunnerResult
90 } catch (Exception exception) {
91 result.exception = exception;
98 } catch (Exception exception) {
99 result.exception = exception;
121 setException(result.exception);
126 } catch (Exception exception) {
128 setException(exception);
243 setException(Exception exception) argument
[all...]
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestSuiteBuilder.java194 } catch (Exception exception) {
195 Log.i("TestSuiteBuilder", "Failed to create test.", exception);
197 suite.addTest(new FailedToCreateTests(exception));
230 private final Exception exception; field in class:TestSuiteBuilder.FailedToCreateTests
232 public FailedToCreateTests(Exception exception) { argument
234 this.exception = exception;
238 throw new RuntimeException("Exception during suite construction", 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/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/tools/aidl/
H A DAST.h273 Variable* exception; member in struct:CatchStatement
275 CatchStatement(Variable* exception);
/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);
H A Dandroid_media_MediaCodec.cpp311 jthrowable exception = local
314 env->Throw(exception);
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...]
/frameworks/base/core/jni/
H A Dandroid_view_Surface.cpp401 const char* const exception = (err == NO_MEMORY) ? local
404 jniThrowException(env, exception, NULL);
/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...]

Completed in 4930 milliseconds