/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
CertPathValidatorUtilities.java | 67 import org.bouncycastle.jce.exception.ExtCertPathValidatorException; 134 * on the given certificate has thrown an exception. 156 * on the given certificate has thrown an exception. 166 Exception invalidKeyEx = null; 226 catch (Exception ex) 343 catch (Exception e) 345 throw new AnnotatedException("exception processing extension " + oid, e); 366 catch (Exception e) 563 catch (Exception e) 576 catch (Exception ex [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
DebuggerModel.js | 97 Exception: "exception", [all...] |
/external/chromium_org/v8/src/compiler/ |
ast-graph-builder.cc | 393 // Check for stack-overflow exception. 1164 Node* exception = environment()->Pop(); 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/kernel-headers/original/uapi/asm-x86/asm/ |
kvm.h | 243 __u32 exception; member in struct:kvm_debug_exit_arch 294 } exception; member in struct:kvm_vcpu_events
|
/external/linux-tools-perf/perf-3.12.0/arch/x86/include/uapi/asm/ |
kvm.h | 243 __u32 exception; member in struct:kvm_debug_exit_arch 294 } exception; member in struct:kvm_vcpu_events
|
/external/lldb/tools/debugserver/source/ |
DNBDefs.h | 271 } exception; member in union:DNBThreadStopInfo::__anon4937
|
/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/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
CodeEmitter.java | 146 public void catch_exception(Block block, Type exception) { 153 exception.getInternalName()); 654 } catch (Exception e) {
|
/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 | |
org.eclipse.equinox.p2.garbagecollector_1.0.100.v20100503.jar | |
org.eclipse.ecf_3.1.0.v20100529-0735.jar | |
org.eclipse.equinox.preferences_3.3.0.v20100503.jar | |
org.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jar | |
org.eclipse.debug.core_3.6.0.v20100519.jar | |
/art/runtime/ |
thread.cc | 1142 mirror::Throwable* exception = GetException(nullptr); local 1150 mirror::Throwable* exception = GetException(nullptr); local 1954 mirror::Throwable* exception = GetException(&throw_location); local [all...] |
jni_internal.cc | 85 // exception; there the "L;" must be present ("[La/b/C;"). Historically we've 296 ScopedLocalRef<jthrowable> exception( 298 if (exception.get() == nullptr) { 303 soa.Self()->SetException(throw_location, soa.Decode<mirror::Throwable*>(exception.get())); 692 mirror::Throwable* exception = soa.Decode<mirror::Throwable*>(java_exception); local 693 if (exception == nullptr) { 697 soa.Self()->SetException(throw_location, exception); 718 // If we have no exception to describe, pass through. 740 ScopedLocalRef<jthrowable> exception(env, 742 ScopedLocalRef<jclass> exception_class(env, env->GetObjectClass(exception.get())) 764 mirror::Object* exception = soa.Self()->GetException(nullptr); local [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
Vp8CodecTestBase.java | 126 boolean forceGoogleCodec) throws Exception { 439 int dstWidth, int dstHeight) throws Exception { 468 String dstYuvFilename, int dstFrameWidth, int dstFrameHeight) throws Exception { 515 boolean forceGoogleDecoder) throws Exception { 689 private InputStream OpenFileOrResourceId(String filename, int resourceId) throws Exception { 722 throws Exception { 754 } catch (Exception e) { 968 final Exception[] exception = new Exception[1]; local [all...] |
/external/chromium_org/v8/src/ |
debug.cc | 329 // function twice might happen when stepping in a function with an exception 773 Handle<Object> exception; local 774 if (maybe_exception.ToHandle(&exception)) { 775 isolate->set_pending_exception(*exception); 2900 Handle<Object> exception; local [all...] |
factory.cc | 486 // Make sure that an out of memory exception is thrown if the length 1190 MaybeHandle<Object> exception; local 1217 MaybeHandle<Object> exception; local [all...] |
isolate.cc | 426 // Capture stack trace for a detailed exception message. 787 Handle<JSObject> exception = factory()->CopyJSObject(boilerplate); local 788 DoThrow(*exception, NULL); 790 CaptureAndSetSimpleStackTrace(exception, factory()->undefined_value()); 791 return heap()->exception(); 797 return heap()->exception(); 838 Object* Isolate::Throw(Object* exception, MessageLocation* location) { 839 DoThrow(exception, location); 840 return heap()->exception(); 844 Object* Isolate::ReThrow(Object* exception) { 2333 Handle<Object> exception; local [all...] |
parser.cc | 586 // stack overflow. The isolate allows only one pending exception at at time 621 // stack overflow. The isolate allows only one pending exception at at time 2696 Expression* exception = ParseExpression(true, CHECK_OK); local [all...] |
/external/chromium_org/v8/src/arm64/ |
code-stubs-arm64.cc | 1193 const Register& exception = result; local [all...] |