Home
last modified time | relevance | path

Searched refs:exceptionHandler (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/common/ficl/
H A Dvm.c256 jmp_buf exceptionHandler; in ficlVmInnerLoop() local
272 oldExceptionHandler = vm->exceptionHandler; in ficlVmInnerLoop()
274 vm->exceptionHandler = &exceptionHandler; in ficlVmInnerLoop()
275 except = setjmp(exceptionHandler); in ficlVmInnerLoop()
281 vm->exceptionHandler = oldExceptionHandler; in ficlVmInnerLoop()
2060 vm->exceptionHandler = oldExceptionHandler; in ficlVmInnerLoop()
2354 if (vm->exceptionHandler) in ficlVmThrow()
2355 longjmp(*(vm->exceptionHandler), except); in ficlVmThrow()
2369 longjmp(*(vm->exceptionHandler), FICL_VM_STATUS_ERROR_EXIT); in ficlVmThrowError()
2384 longjmp(*(vm->exceptionHandler), FICL_VM_STATUS_ERROR_EXIT); in ficlVmThrowErrorVararg()
[all …]
H A Dprimitives.c2946 vm->exceptionHandler = &vmState; in ficlPrimitiveCatch()
2973 vm->exceptionHandler = vmCopy.exceptionHandler; in ficlPrimitiveCatch()
H A Dficl.h1001 jmp_buf *exceptionHandler; /* crude exception mechanism... */ member
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DLocalConsumer.java142 protected ExceptionHandler exceptionHandler; field in LocalConsumer
627 if (exceptionHandler != null) { in work()
628 exceptionHandler.handleException(e); in work()
762 exceptionHandler = h; in go()
795 if (exceptionHandler != null) { in stop()
796 exceptionHandler.handleException(e); in stop()
/illumos-gate/usr/src/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java644 final ExceptionHandler exceptionHandler = new ExceptionHandler() { in main() local
979 exceptionHandler.handleException(x); in main()
1022 exceptionHandler.handleException(x); in main()
1026 dtrace.go(exceptionHandler); in main()