Searched defs:exception (Results 1 - 6 of 6) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | exceptions.pl | 11 # Here's a little code I use for exception handling. It's really just 13 # exit, use &throw to raise an exception. The first enclosing &catch 14 # handler looks at the exception and decides whether it can catch this kind 16 # caught. If it *can't* catch it, then it will reraise the exception 23 # exception or a perl-raised one (eval error). 38 package exception; package 53 local($exception) = @_; 54 die "EXCEPTION: $exception\n";
|
/osnet-11/usr/src/lib/libc/port/fp/ |
H A D | sigfpe.c | 128 enum fp_exception_type exception; local 141 exception = fp_invalid; 144 exception = fp_inexact; 147 exception = fp_division; 150 exception = fp_underflow; 153 exception = fp_overflow; 170 switch ((intptr_t)ieee_handlers[(int)exception]) { 178 (ieee_handlers[(int)exception])(sig, siginfo, ucontext);
|
/osnet-11/usr/src/lib/libadt_jni/common/ |
H A D | adt_jni.c | 42 * local_throw -- throw an exception. 48 local_throw(JNIEnv *env, const char *exception, const char *why) { argument 70 exceptionclass = (*env)->FindClass(env, exception); 306 return; /* j2c_pointer threw exception */
|
/osnet-11/usr/src/lib/libparted/common/libparted/fs/reiserfs/ |
H A D | reiserfs.c | 186 static int exception_handler(reiserfs_exception_t *exception) argument 188 int ex_type = libreiserfs_exception_type(exception); 189 int ex_option = libreiserfs_exception_option(exception); 190 char *ex_message = libreiserfs_exception_message(exception);
|
/osnet-11/usr/src/lib/libshell/common/sh/ |
H A D | streval.c | 970 #undef exception macro 971 #define exception _exception macro 993 extern int matherr(struct exception *ep)
|
/osnet-11/usr/src/lib/libdtrace_jni/common/ |
H A D | dtj_jnitab.c | 887 jobject exception = NULL; local 895 return; /* java exception pending */ 898 exception = (*jenv)->NewObject(jenv, g_dtx_jc, g_dtxinit_jm, message); 900 if (exception) { 901 (*jenv)->Throw(jenv, exception); 902 (*jenv)->DeleteLocalRef(jenv, exception);
|
Completed in 29 milliseconds