| /freebsd-11-stable/contrib/libcxxrt/ |
| HD | stdexcept.cc | 34 exception::exception() throw() {} in exception() function in std::exception 35 exception::~exception() {} in ~exception() 36 exception::exception(const exception&) throw() {} in exception() argument 37 exception& exception::operator=(const exception&) throw() in operator =() argument 41 const char* exception::what() const throw() in what()
|
| HD | stdexcept.h | 35 class exception 38 exception() throw(); 39 exception(const exception&) throw(); 40 exception& operator=(const exception&) throw(); 41 virtual ~exception(); 49 class bad_alloc: public exception 62 class bad_cast: public exception { 74 class bad_typeid: public exception
|
| HD | exception.cc | 226 class exception class 229 virtual ~exception() throw(); 640 static void releaseException(__cxa_exception *exception) in releaseException() argument 642 if (isDependentException(exception->unwindHeader.exception_class)) in releaseException() 644 __cxa_free_dependent_exception(exception+1); in releaseException() 647 if (__sync_sub_and_fetch(&exception->referenceCount, 1) == 0) in releaseException() 652 __cxa_free_exception(exception+1); in releaseException() 724 static_cast<const __class_type_info*>(&typeid(std::exception)); in report_failure() 729 std::exception *e = in report_failure() 730 static_cast<std::exception*>(e_ti->cast_to(static_cast<void*>(thrown_exception+1), in report_failure() [all …]
|
| /freebsd-11-stable/contrib/libstdc++/libsupc++/ |
| D | exception | 24 // As a special exception, you may use this file as part of a free software 29 // the GNU General Public License. This exception does not however 33 /** @file exception 53 * your own %exception classes, or use a different hierarchy, or to 56 class exception 59 exception() throw() { } 60 virtual ~exception() throw(); 67 /** If an %exception is thrown which is not listed in a function's 68 * %exception specification, one of these may be thrown. */ 69 class bad_exception : public exception [all …]
|
| D | eh_exception.cc | 36 std::exception::~exception() throw() { } in ~exception() 41 std::exception::what() const throw() in what()
|
| /freebsd-11-stable/contrib/llvm-project/libcxx/include/ |
| HD | exception | 2 //===-------------------------- exception ---------------------------------===// 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 14 exception synopsis 19 class exception 22 exception() noexcept; 23 exception(const exception&) noexcept; 24 exception& operator=(const exception&) noexcept; 25 virtual ~exception() noexcept; 30 : public exception 97 class _LIBCPP_EXCEPTION_ABI exception [all …]
|
| HD | stdexcept | 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 31 class xxx_error : public exception // at least indirectly 45 #include <exception> 79 : public exception 97 _LIBCPP_INLINE_VISIBILITY explicit logic_error(const char* __s) : exception(__s) {} 102 : public exception 120 _LIBCPP_INLINE_VISIBILITY explicit runtime_error(const char* __s) : exception(__s) {}
|
| /freebsd-11-stable/sys/riscv/riscv/ |
| HD | trap.c | 272 uint64_t exception; in do_trap_supervisor() local 274 exception = (frame->tf_scause & EXCP_MASK); in do_trap_supervisor() 282 if (dtrace_trap_func != NULL && (*dtrace_trap_func)(frame, exception)) in do_trap_supervisor() 289 switch(exception) { in do_trap_supervisor() 303 kdb_trap(exception, 0, frame); in do_trap_supervisor() 316 exception, frame->tf_sbadaddr); in do_trap_supervisor() 323 uint64_t exception; in do_trap_user() local 329 exception = (frame->tf_scause & EXCP_MASK); in do_trap_user() 339 switch(exception) { in do_trap_user() 360 exception, frame->tf_sbadaddr); in do_trap_user()
|
| /freebsd-11-stable/contrib/llvm-project/libcxx/src/support/runtime/ |
| HD | exception_msvc.ipp | 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 72 // handler should not throw exception 73 fprintf(stderr, "terminate_handler unexpectedly threw an exception\n"); 114 exception::~exception() _NOEXCEPT 118 const char* exception::what() const _NOEXCEPT 120 return "std::exception";
|
| HD | exception_fallback.ipp | 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 69 // handler should not throw exception 70 fprintf(stderr, "terminate_handler unexpectedly threw an exception\n"); 89 exception::~exception() _NOEXCEPT 93 const char* exception::what() const _NOEXCEPT 95 return "std::exception";
|
| HD | stdexcept_vcruntime.ipp | 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 14 logic_error::logic_error(std::string const& s) : exception(s.c_str()) {} 15 runtime_error::runtime_error(std::string const& s) : exception(s.c_str()) {}
|
| /freebsd-11-stable/sys/dev/dpaa/ |
| HD | if_dtsec.c | 143 dtsec_fm_mac_ex_to_str(e_FmMacExceptions exception) in dtsec_fm_mac_ex_to_str() argument 147 for (i = 0; dtsec_fm_mac_exceptions[i].num != exception && in dtsec_fm_mac_ex_to_str() 159 e_FmMacExceptions exception) in dtsec_fm_mac_mdio_event_callback() argument 164 device_printf(sc->sc_dev, "MDIO event %i: %s.\n", exception, in dtsec_fm_mac_mdio_event_callback() 165 dtsec_fm_mac_ex_to_str(exception)); in dtsec_fm_mac_mdio_event_callback() 169 dtsec_fm_mac_exception_callback(t_Handle app, e_FmMacExceptions exception) in dtsec_fm_mac_exception_callback() argument 174 device_printf(sc->sc_dev, "MAC exception %i: %s.\n", exception, in dtsec_fm_mac_exception_callback() 175 dtsec_fm_mac_ex_to_str(exception)); in dtsec_fm_mac_exception_callback() 252 dtsec_fm_port_ex_to_str(e_FmPortExceptions exception) in dtsec_fm_port_ex_to_str() argument 255 switch (exception) { in dtsec_fm_port_ex_to_str() [all …]
|
| /freebsd-11-stable/sys/arm64/arm64/ |
| HD | trap.c | 273 uint32_t exception; in do_el1h_sync() local 278 exception = ESR_ELx_EXCEPTION(esr); in do_el1h_sync() 281 if (dtrace_trap_func != NULL && (*dtrace_trap_func)(frame, exception)) in do_el1h_sync() 289 switch(exception) { in do_el1h_sync() 313 kdb_trap(exception, 0, frame); in do_el1h_sync() 320 panic("Unknown kernel exception %x esr_el1 %lx\n", exception, in do_el1h_sync() 342 uint32_t exception; in do_el0_sync() local 351 exception = ESR_ELx_EXCEPTION(esr); in do_el0_sync() 352 switch (exception) { in do_el0_sync() 365 switch(exception) { in do_el0_sync()
|
| /freebsd-11-stable/contrib/gcc/config/rs6000/ |
| HD | darwin-fallback.c | 268 uint32_t exception; member 291 uint32_t exception; member 387 if (m64->exception == 3 || m64->exception == 4 in handle_syscall() 388 || m64->exception == 6 in handle_syscall() 389 || (m64->exception == 7 && !(m64->srr1 & 0x10000))) in handle_syscall() 416 if (m->exception == 3 || m->exception == 4 in handle_syscall() 417 || m->exception == 6 in handle_syscall() 418 || (m->exception == 7 && !(m->srr1 & 0x10000))) in handle_syscall()
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/ |
| HD | MachException.cpp | 37 mach_port_t task, exception_type_t exception, 42 mach_port_t exception_port, exception_type_t exception, 51 exception_type_t exception, mach_exception_data_t code, 146 stop_info->details.exception.type = exc_type; in GetStopInfo() 155 stop_info->details.exception.data_count = exc_data.size(); in GetStopInfo() 166 (uint64_t)stop_info->details.exception.data_count); in GetStopInfo() 168 for (idx = 0; idx < stop_info->details.exception.data_count; ++idx) { in GetStopInfo() 171 ((idx + 1 == stop_info->details.exception.data_count) ? '}' : ',')); in GetStopInfo() 176 for (size_t i = 0; i < stop_info->details.exception.data_count; i++) in GetStopInfo() 177 stop_info->details.exception.data[i] = exc_data[i]; in GetStopInfo()
|
| /freebsd-11-stable/lib/libcxxrt/ |
| HD | Version.map | 300 "std::exception::exception(std::exception const&)"; 301 "std::exception::exception()"; 302 "std::exception::operator=(std::exception const&)"; 341 "std::exception::~exception()"; 345 "std::exception::what() const"; 355 "vtable for std::exception"; 362 "typeinfo for std::exception"; 368 "typeinfo name for std::exception";
|
| /freebsd-11-stable/contrib/gcc/cp/ |
| HD | cfns.gperf | 15 # [lib.res.on.exception.handling]: None of the functions from the 17 # exception, unless it calls a program-supplied function that 18 # throws an exception. 22 # abort -- synchronous exception from SIGABRT handler 33 #bsearch -- calls user function which may throw exception 137 #qsort -- calls user function which may throw exception 138 #raise -- synchronous exception from signal handler
|
| /freebsd-11-stable/tests/sys/fifo/ |
| HD | fifo_io.c | 864 poll_status(int fd, int *readable, int *writable, int *exception, in poll_status() argument 879 *exception = (fds[0].revents & POLLERR) ? 1 : 0; in poll_status() 884 select_status(int fd, int *readable, int *writable, int *exception, in select_status() argument 904 *exception = FD_ISSET(fd, &exceptfds) ? 1 : 0; in select_status() 954 int *exception, const char *testname) in kqueue_status() argument 970 *readable = *writable = *exception = 0; in kqueue_status() 1014 int readable, writable, exception; in assert_status() local 1016 if (poll_status(fd, &readable, &writable, &exception, testname) < 0) in assert_status() 1020 exception != assert_exception) { in assert_status() 1022 fdname, readable, writable, exception, conditionname); in assert_status() [all …]
|
| /freebsd-11-stable/contrib/atf/atf-c++/detail/ |
| D | exceptions_test.cpp | 96 } catch (const std::exception& e) { in ATF_TEST_CASE_BODY() 112 } catch (const std::exception& e) { in ATF_TEST_CASE_BODY() 130 } catch (const std::exception& e) { in ATF_TEST_CASE_BODY()
|
| /freebsd-11-stable/contrib/libstdc++/include/tr1/ |
| D | memory | 21 // As a special exception, you may use this file as part of a free software 26 // the GNU General Public License. This exception does not however 40 #include <exception> // std::exception
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| HD | WebAssemblyInstrControl.td | 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 111 // Throwing an exception: throw / rethrow 126 // Region within which an exception is caught: try / end_try 132 // Catching an exception: catch / extract_exception 137 // Querying / extracing exception: br_on_exn 138 // br_on_exn queries an exnref to see if it matches the corresponding exception 140 // corresponding argument values of the exception onto the stack.
|
| /freebsd-11-stable/lib/libdevdctl/ |
| HD | Makefile | 7 exception.h \ 12 exception.cc \
|
| /freebsd-11-stable/gnu/lib/libsupc++/ |
| D | Version.map | 159 std::exception*; 163 "typeinfo for std::exception"; 168 "typeinfo name for std::exception"; 173 "vtable for std::exception";
|
| /freebsd-11-stable/lib/libc/softfloat/ |
| HD | softfloat.txt | 168 All five exception flags required by the IEC/IEEE Standard are 170 `float_exception_flags'. The positions of the exception flag bits within 173 `float_flag_invalid'. The exception flags variable is initialized to all 0, 176 An individual exception flag can be cleared with the statement 178 float_exception_flags &= ~ float_flag_<exception>; 180 where `<exception>' is the appropriate name. To raise a floating-point 181 exception, the SoftFloat function `float_raise' should be used (see below). 225 Conversions from floating-point to integer raise the invalid exception if 323 functions raise the invalid exception if either input is any kind of NaN. 325 exception on quiet NaNs. For completeness, SoftFloat provides the following [all …]
|
| /freebsd-11-stable/contrib/gcc/ |
| HD | unwind.inc | 37 exception handler and intermediary cleanup code. We'll only locate 83 /* Raise an exception, passing along the given exception object. */ 196 /* Raise an exception for forced unwinding. */ 219 /* Resume propagation of an existing exception. This is used after 244 /* Resume propagation of an FORCE_UNWIND exception, or to rethrow 245 a normal exception that was handled. */
|