| /art/runtime/ |
| check_jni.cc | 807 // Verify that, if an exception has been raised, the native code doesn't 808 // make any JNI calls other than the Exception* methods. 811 mirror::Throwable* exception = self->GetException(&throw_location); local 812 std::string type(PrettyTypeOf(exception)); 813 JniAbortF(function_name_, "JNI %s called with pending exception '%s' thrown in %s", [all...] |
| /cts/tests/tests/media/src/android/media/cts/ |
| ExtractDecodeEditEncodeMuxTest.java | 247 private void extractDecodeEditEncodeMux() throws Exception { 248 // Exception that may be thrown during release. 249 Exception exception = null; local 291 // configure() call to throw an unhelpful exception. 349 // case we save the first exception we got and re-throw at the end (unless something 350 // other exception has already been thrown). This guarantees the first exception thrown 357 } catch(Exception e) { 359 if (exception == null) [all...] |
| /dalvik/vm/ |
| Jni.cpp | 483 * Throwing an exception on failure is problematic, because JNI code 484 * may not be expecting an exception, and things sort of cascade. We 917 Object* exception = dvmGetException(self); local 918 std::string exceptionClassName(dvmHumanReadableDescriptor(exception->clazz->descriptor)); 1365 Object* exception = dvmGetException(ts.self()); local 1385 Object* exception = dvmGetException(ts.self()); local [all...] |
| /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
| ObjectInputStreamTest.java | 83 private void readObject(ObjectInputStream ois) throws Exception { 134 public void test_readObjectMissingClasses() throws Exception { 235 public void test_defaultReadObject() throws Exception { 237 // throws an exception. 325 public void test_readFields() throws Exception { 428 public void test_readObject() throws Exception { 516 public void test_readObjectOverride() throws Exception { 627 public void test_readObject_withPrimitiveClass() throws Exception { 743 public void test_resolveClass() throws Exception { 783 public void test_resolveObjectLjava_lang_Object() throws Exception { 872 private IOException exception = null; field in class:ObjectInputStreamTest.ExceptionalBufferedInputStream [all...] |
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
| CertPathValidatorUtilities.java | 67 import org.bouncycastle.jce.exception.ExtCertPathValidatorException; 132 * on the given certificate has thrown an exception. 154 * on the given certificate has thrown an exception. 164 Exception invalidKeyEx = null; 224 catch (Exception ex) 341 catch (Exception e) 343 throw new AnnotatedException("exception processing extension " + oid, e); 364 catch (Exception e) 561 catch (Exception e) 574 catch (Exception ex [all...] |
| /external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
| plugin.cc | 1595 pp::VarPrivate exception; local [all...] |
| /external/chromium_org/third_party/WebKit/Source/testing/runner/ |
| WebTestProxy.cpp | 96 void printNodeDescription(WebTestDelegate* delegate, const WebNode& node, int exception) 98 if (exception) { 123 int exception = 0; local 124 WebNode startNode = range.startContainer(exception); 125 printNodeDescription(delegate, startNode, exception); 128 WebNode endNode = range.endContainer(exception); 129 printNodeDescription(delegate, endNode, exception); [all...] |
| /external/chromium_org/v8/src/ |
| isolate.cc | 474 // The pending exception can sometimes be a failure. We can't show 717 // Capture stack trace for a detailed exception message. 1090 Handle<JSObject> exception = Copy(boilerplate); local [all...] |
| /external/emma/core/java12/com/vladium/emma/instr/ |
| InstrVisitor.java | 171 // TODO: use a app coded exception 728 final Exception_info exception = exceptions.get (e); local 729 leaders.add (exception.m_handler_pc); 1211 final Exception_info exception = exceptionTable.get (e); local [all...] |
| /external/llvm/examples/ExceptionDemo/ |
| ExceptionDemo.cpp | 10 // Demo program which implements an example LLVM exception implementation, and 14 // of -1 will trigger a foreign C++ exception to be thrown; type info types 21 // thrown exception. 32 // - Value 2 causes an exception with a type info type of 2 to be 34 // - Value 3 causes an exception with a type info type of 3 to be 36 // - Value 7 causes an exception with a type info type of 7 to be 38 // - Value -1 causes a foreign C++ exception to be thrown and not be 42 // of a C++ catch(...) clause catching a generated exception with a 149 /// This is our Exception class which relies on a negative offset to calculate 321 /// Deletes the true previosly allocated exception whose addres 1474 llvm::Value *exception = builder.CreateCall(createOurException, local [all...] |
| /external/mdnsresponder/mDNSShared/ |
| dnsextd.c | 633 mDNSBool exception = mDNSfalse; local 655 exception = ( ( question.qtype == kDNSType_SOA ) || ( question.qtype == kDNSType_NS ) || ( ( question.qtype == kDNSType_SRV ) && IsPublicSRV( self, &question ) ) ); 668 exception = mDNSfalse; 681 pkt->isZonePublic = ( ( pkt->zone->type == kDNSZonePublic ) || exception ); [all...] |
| /external/qemu/android/config/linux-x86/asm/ |
| kvm.h | 220 __u32 exception; member in struct:kvm_debug_exit_arch
|
| /external/qemu/android/config/linux-x86_64/asm/ |
| kvm.h | 220 __u32 exception; member in struct:kvm_debug_exit_arch
|
| /external/v8/src/ |
| isolate.cc | 443 // The pending exception can sometimes be a failure. We can't show 532 // Capture stack trace for a detailed exception message. 902 Handle<Object> exception = Copy(boilerplate); local 905 // double fault with another stack overflow exception, we use a 907 DoThrow(*exception, NULL); 908 return Failure::Exception(); 914 return Failure::Exception(); 918 Failure* Isolate::Throw(Object* exception, MessageLocation* location) { 919 DoThrow(exception, location); 920 return Failure::Exception(); [all...] |
| /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
| GraphRunner.java | 118 private Exception mCaughtException = null; 169 } catch (Exception e) { 176 // Exception during exception recovery? Abort all processing. Do not 177 // overwrite the original exception. 553 * thrown exception is passed to the listener in this method. If no listener is set, the 554 * exception message is logged to the error stream. You will not receive an 557 * @param exception the exception that was thrown. 560 public void onGraphRunnerError(Exception exception, boolean closedSuccessfully) [all...] |
| /frameworks/base/tests/CoreTests/android/core/ |
| SSLSocketTest.java | 277 android.util.Log.d("SSLSocketTest", "Exception", ex); 297 android.util.Log.d("SSLSocketTest", "Exception", ex); 310 public void testContextInitNullArgs() throws Exception { 319 public void testDefaultAlgorithms() throws Exception { 335 public void testMultithreadedClose() throws Exception { 347 } catch (Exception ex) { 360 } catch (Exception ex) { 426 } catch (Exception ex) { 428 "testMultithreadedFetch() got Exception", ex); 630 private Exception exception field in class:SSLSocketTest.TestServer 709 private Exception exception; field in class:SSLSocketTest.TestClient [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/ |
| ServerSocketChannelTest.java | 56 protected void setUp() throws Exception { 65 protected void tearDown() throws Exception { 69 } catch (Exception e) { 77 } catch (Exception e) { 124 public void testSocket_Block_BeforeClose() throws Exception { 140 public void testSocket_NonBlock_BeforeClose() throws Exception { 156 public void testSocket_Block_Closed() throws Exception { 168 public void testSocket_NonBlock_Closed() throws Exception { 232 public void testAccept_ClosedChannel() throws Exception { 254 } catch (Exception e) 403 IOException exception; field in class:ServerSocketChannelTest.WriteChannelThread 471 IOException exception; field in class:ServerSocketChannelTest.WriteSocketThread [all...] |
| /libcore/luni/src/main/native/ |
| libcore_io_Posix.cpp | 75 * Returns the result of 'exp', though a Java exception will be pending if the result is -1. 113 jobject exception; local 115 exception = env->NewObject(exceptionClass, ctor3, detailMessage.get(), error, cause); 117 exception = env->NewObject(exceptionClass, ctor2, detailMessage.get(), error); 119 env->Throw(reinterpret_cast<jthrowable>(exception)); 132 // Cache the methods ids before we throw, so we don't call GetMethodID with a pending exception. 144 // Deliberately fall through to throw another exception... [all...] |
| /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/ |
| ObjectInputStreamTest.java | 82 private void readObject(ObjectInputStream ois) throws Exception { 133 public void test_readObjectMissingClasses() throws Exception { 234 public void test_defaultReadObject() throws Exception { 236 // throws an exception. 324 public void test_readFields() throws Exception { 427 public void test_readObject() throws Exception { 515 public void test_readObjectOverride() throws Exception { 626 public void test_readObject_withPrimitiveClass() throws Exception { 742 public void test_resolveClass() throws Exception { 782 public void test_resolveObjectLjava_lang_Object() throws Exception { 871 private IOException exception = null; field in class:ObjectInputStreamTest.ExceptionalBufferedInputStream [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
| RenderPreview.java | 569 Throwable exception = render.getException(); local 570 if (exception != null) { 571 AdtPlugin.log(exception, "Failure rendering preview " + getDisplayName()); [all...] |
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
| org.eclipse.equinox.common_3.6.0.v20100503.jar | |
| org.eclipse.equinox.event_1.2.0.v20100503.jar | |
| /prebuilts/devtools/tools/lib/ |
| org-eclipse-equinox-common-3.6.0.jar | |
| /prebuilts/tools/common/eclipse/ |
| org.eclipse.equinox.common_3.4.0.v20080421-2006.jar | |
| org.eclipse.equinox.common_3.6.0.v20100503.jar | |