| /src/sys/sys/ |
| userret.h | 51 int exception; local 56 exception = l->l_cpu->ci_want_resched | (l->l_flag & LW_USERRET); 58 if (__predict_false(exception)) {
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/ |
| exception.h | 0 // Exception Handling support header for -*- C++ -*- 18 // permissions described in the GCC Runtime Library Exception, version 22 // a copy of the GCC Runtime Library Exception along with this program; 26 /** @file bits/exception.h 56 * your own %exception classes, or use a different hierarchy, or to 59 class exception class 62 exception() _GLIBCXX_NOTHROW { } 63 virtual ~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_NOTHROW; 65 exception(const exception&) = default [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/ |
| exception.h | 0 // Exception Handling support header for -*- C++ -*- 18 // permissions described in the GCC Runtime Library Exception, version 22 // a copy of the GCC Runtime Library Exception along with this program; 26 /** @file bits/exception.h 58 * your own %exception classes, or use a different hierarchy, or to 61 class exception class in namespace:std 64 exception() _GLIBCXX_NOTHROW { } 65 virtual ~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_NOTHROW; 67 exception(const exception&) = default [all...] |
| /src/external/bsd/libc++/dist/libcxxrt/src/ |
| stdexcept.h | 35 class exception class in namespace:std 38 exception() throw(); 39 exception(const exception&) throw(); 40 exception& operator=(const exception&) throw(); 41 virtual ~exception(); 47 * Bad allocation exception. Thrown by ::operator new() if it fails. 49 class bad_alloc: public exception 60 * Bad cast exception. Thrown by the __cxa_bad_cast() helper function [all...] |
| stdexcept.cc | 34 exception::exception() throw() {} function in class:std::exception 35 exception::~exception() {} 36 exception::exception(const exception&) throw() {} function in class:std::exception 37 exception& exception::operator=(const exception&) throw( [all...] |
| /src/external/gpl3/gdb/dist/sim/testsuite/bfin/ |
| usp.S | 15 loadsym r0, exception; 34 # Move up to exception space 37 exception: label
|
| hwloop-bits.S | 37 loadsym R0, exception; 83 exception: label
|
| /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/ |
| usp.S | 15 loadsym r0, exception; 34 # Move up to exception space 37 exception: label
|
| hwloop-bits.S | 37 loadsym R0, exception; 83 exception: label
|
| /src/external/gpl3/gdb.old/dist/gdb/guile/lib/gdb/ |
| init.scm | 30 (define %exception-keys '(gdb:error 38 (define (%exception-printer port key args default-printer) 47 ;; Print the message part of a gdb:with-stack exception. 48 ;; The arg list is the way it is because it's passed to set-exception-printer!. 52 (define (%with-stack-exception-printer port key args default-printer) 55 (%exception-printer port real-key real-args default-printer))) 57 ;; Copy of Guile's print-exception that tweaks the output for our purposes. 60 (define (%print-exception-message-worker port key args) 67 (%exception-printer port key args default-printer)) 69 (format port "Error while printing gdb exception: ~a ~s. [all...] |
| /src/external/gpl3/gdb/dist/gdb/guile/lib/gdb/ |
| init.scm | 30 (define %exception-keys '(gdb:error 38 (define (%exception-printer port key args default-printer) 47 ;; Print the message part of a gdb:with-stack exception. 48 ;; The arg list is the way it is because it's passed to set-exception-printer!. 52 (define (%with-stack-exception-printer port key args default-printer) 55 (%exception-printer port real-key real-args default-printer))) 57 ;; Copy of Guile's print-exception that tweaks the output for our purposes. 60 (define (%print-exception-message-worker port key args) 67 (%exception-printer port key args default-printer)) 69 (format port "Error while printing gdb exception: ~a ~s. [all...] |
| /src/external/gpl3/gdb.old/dist/sim/ft32/ |
| ft32-sim.h | 40 int exception; member in struct:ft32_cpu_state
|
| /src/external/gpl3/gdb/dist/sim/ft32/ |
| ft32-sim.h | 40 int exception; member in struct:ft32_cpu_state
|
| /src/external/mpl/bind/dist/bin/tests/system/doth/ |
| tests_gnutls.py | 19 import dns.exception namespace 86 except dns.exception.FormError:
|
| /src/external/mpl/bind/dist/bin/tests/system/stress/ |
| tests_stress_update.py | 15 import dns.exception namespace 48 except dns.exception.Timeout:
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/scripts/ |
| make_graph.py | 10 class exception: class in inherits: 168 raise exception 313 raise exception
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/scripts/ |
| make_graph.py | 10 class exception: class in inherits: 168 raise exception 313 raise exception
|
| /src/external/mpl/bind/dist/bin/tests/system/shutdown/ |
| tests_shutdown.py | 23 import dns.exception namespace 133 except dns.exception.Timeout: 187 finally: # Ensure named is terminated in case of an exception
|
| /src/external/gpl3/gcc/dist/fixincludes/tests/base/ |
| math.h | 14 #define exception __math_exception macro 84 typedef struct exception t_math_exception; 150 #undef exception macro
|
| /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/ |
| math.h | 14 #define exception __math_exception macro 84 typedef struct exception t_math_exception; 150 #undef exception macro
|
| /src/external/lgpl3/mpfr/dist/src/ |
| jn.c | 86 int exception = 0; local 306 /* The error analysis is incorrect in case of exception. 311 MPFR_ASSERTN (! exception); 312 exception = 1;
|
| /src/external/mpl/bind/dist/bin/tests/system/isctest/ |
| query.py | 18 import dns.exception namespace 44 def log_querymsg(exception: Exception | None = None) -> None: 49 If an exception is provided, it will be logged as well. 58 if exception: 60 f"isc.query.{query_func.__name__}(): the '{exception}' exception raised" 91 except (dns.exception.Timeout, ConnectionRefusedError) as e: 111 raise dns.exception.Timeout
|
| /src/external/mpl/bind/dist/bin/tests/system/ssumaxtype/ |
| tests_ssumaxtype.py | 26 import dns.exception namespace 64 except dns.exception.Timeout: 133 except dns.exception.Timeout:
|
| /src/bin/sh/ |
| error.c | 69 int exception; variable 80 * Called to raise an exception. Since C doesn't include exceptions, we 81 * just do a longjmp to the exception handler. The type of exception is 82 * stored in the global variable "exception". 91 exception = e; 161 * Exverror is called to raise the error exception. If the second argument 163 * formatting. It then raises the error exception.
|
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| options.cc | 550 static const char * const exception[] = { "invalid", "denormal", "zero", local 592 for (n = 0; exception[n] != NULL; n++) 594 if (exception[n] && strncmp (exception[n], arg, pos) == 0)
|