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

12

/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/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/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryLoader.java51 Exception exception; field in class:DirectoryResult
114 result.exception = e;
182 result.exception = e;
/frameworks/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/core/jni/
H A Dandroid_view_Surface.cpp223 const char* const exception = (err == NO_MEMORY) ? local
226 jniThrowException(env, exception, NULL);
/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/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.cpp114 // Returns true if it throws an exception.
115 static bool process_media_recorder_call(JNIEnv *env, status_t opStatus, const char* exception, const char* message) argument
122 jniThrowException(env, exception, message);
H A Dandroid_media_MediaCodec.cpp377 jthrowable exception = local
380 env->Throw(exception);
813 // if we're out of memory, an exception was already thrown
H A Dandroid_media_MediaPlayer.cpp124 ALOGW("An exception occurred while notifying an event.");
153 // If exception is NULL and opStatus is not OK, this method sends an error
154 // event to the client application; otherwise, if exception is not NULL and
155 // opStatus is not OK, this method throws the given exception to the client
157 static void process_media_player_call(JNIEnv *env, jobject thiz, status_t opStatus, const char* exception, const char *message) argument
159 if (exception == NULL) { // Don't throw exception. Instead, send an event.
164 } else { // Throw exception!
172 jniThrowException( env, exception, message);
177 jniThrowException( env, exception, ms
[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/tools/aidl/
H A DAST.h273 Variable* exception; member in struct:CatchStatement
275 CatchStatement(Variable* exception);

Completed in 658 milliseconds

12