Searched defs:exception (Results 1 - 25 of 30) 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.java55 notifyException(Throwable exception) argument
57 internalNotifyRegistrant (null, exception);
66 internalNotifyRegistrant (ar.result, ar.exception);
70 internalNotifyRegistrant (Object result, Throwable exception) argument
81 msg.obj = new AsyncResult(userObj, result, exception);
H A DRegistrantList.java74 internalNotifyRegistrants (Object result, Throwable exception) argument
78 r.internalNotifyRegistrant(result, exception);
89 notifyException(Throwable exception) argument
91 internalNotifyRegistrants (null, exception);
104 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.java40 public Exception exception; field in class:AsyncRunner.RunnerResult
82 } catch (Exception exception) {
83 result.exception = exception;
90 } catch (Exception exception) {
91 result.exception = exception;
113 setException(result.exception);
118 } catch (Exception exception) {
120 setException(exception);
235 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.java170 * request's retry policy, a timeout exception is thrown.
174 VolleyError exception) throws VolleyError {
179 retryPolicy.retry(exception);
230 // This can happen if there was an exception above that left the entity in
173 attemptRetryOnException(String logPrefix, Request<?> request, VolleyError exception) argument
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecFeatureAction.java205 final HdmiCecFeatureAction exception) {
206 mSource.removeActionExcept(clazz, exception);
204 removeActionExcept(final Class<T> clazz, final HdmiCecFeatureAction exception) argument
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestSuiteBuilder.java192 } catch (Exception exception) {
193 Log.i("TestSuiteBuilder", "Failed to create test.", exception);
195 suite.addTest(new FailedToCreateTests(exception));
228 private final Exception exception; field in class:TestSuiteBuilder.FailedToCreateTests
230 public FailedToCreateTests(Exception exception) { argument
232 this.exception = exception;
236 throw new RuntimeException("Exception during suite construction", exception);
/frameworks/base/core/jni/
H A Dandroid_view_Surface.cpp218 const char* const exception = (err == NO_MEMORY) ? local
221 jniThrowException(env, exception, NULL);
/frameworks/base/media/jni/
H A Dandroid_media_MediaMetadataRetriever.cpp53 static void process_media_retriever_call(JNIEnv *env, status_t opStatus, const char* exception, const char *message) argument
60 jniThrowException( env, exception, message);
65 jniThrowException( env, exception, msg);
107 if (!tmp) { // OutOfMemoryError exception already thrown
342 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);
161 // get_native_camera will throw an exception in this case
H A Dandroid_media_MediaPlayer.cpp127 ALOGW("An exception occurred while notifying an event.");
156 // If exception is NULL and opStatus is not OK, this method sends an error
157 // event to the client application; otherwise, if exception is not NULL and
158 // opStatus is not OK, this method throws the given exception to the client
160 static void process_media_player_call(JNIEnv *env, jobject thiz, status_t opStatus, const char* exception, const char *message) argument
162 if (exception == NULL) { // Don't throw exception. Instead, send an event.
167 } else { // Throw exception!
175 jniThrowException( env, exception, message);
180 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);
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
H A DVariableSpeed.java392 private void check(boolean condition, String exception) { argument
394 throw new IllegalStateException(exception);

Completed in 539 milliseconds

12