| /freebsd-14.2/contrib/llvm-project/libcxx/include/__exception/ |
| H A D | exception.h | 42 class exception { // base of all library exceptions 44 exception() _NOEXCEPT : __data_() {} 51 exception(exception const&) _NOEXCEPT {} 53 exception& operator=(exception const&) _NOEXCEPT { return *this; } 55 virtual ~exception() _NOEXCEPT {} 63 class bad_exception : public exception { 72 class _LIBCPP_EXPORTED_FROM_ABI exception { 74 _LIBCPP_HIDE_FROM_ABI exception() _NOEXCEPT {} 75 _LIBCPP_HIDE_FROM_ABI exception(const exception&) _NOEXCEPT = default; 76 _LIBCPP_HIDE_FROM_ABI exception& operator=(const exception&) _NOEXCEPT = default; [all …]
|
| /freebsd-14.2/contrib/libcxxrt/ |
| H A D | stdexcept.cc | 34 exception::exception() _LIBCXXRT_NOEXCEPT {} in exception() function in std::exception 35 exception::~exception() {} in ~exception() 36 exception::exception(const exception&) _LIBCXXRT_NOEXCEPT {} in exception() function in std::exception 37 exception& exception::operator=(const exception&) _LIBCXXRT_NOEXCEPT in operator =() argument 41 const char* exception::what() const _LIBCXXRT_NOEXCEPT in what()
|
| H A D | stdexcept.h | 37 class exception 40 exception() _LIBCXXRT_NOEXCEPT; 41 exception(const exception&) _LIBCXXRT_NOEXCEPT; 42 exception& operator=(const exception&) _LIBCXXRT_NOEXCEPT; 43 virtual ~exception(); 51 class bad_alloc: public exception 64 class bad_cast: public exception { 76 class bad_typeid: public exception
|
| /freebsd-14.2/sys/arm64/arm64/ |
| H A D | trap.c | 477 uint32_t exception; in do_el1h_sync() local 499 switch (exception) { in do_el1h_sync() 593 uint32_t exception; in do_el0_sync() local 667 exception); in do_el0_sync() 672 exception); in do_el0_sync() 677 exception); in do_el0_sync() 682 exception); in do_el0_sync() 691 exception); in do_el0_sync() 696 exception); in do_el0_sync() 725 exception); in do_el0_sync() [all …]
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | 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 81 #include <__exception/exception.h>
|
| H A D | typeinfo | 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 36 : public exception 46 : public exception 62 #include <__exception/exception.h> 317 class _LIBCPP_EXPORTED_FROM_ABI bad_cast : public exception { 326 class _LIBCPP_EXPORTED_FROM_ABI bad_typeid : public exception { 343 class bad_cast : public exception { 345 bad_cast() _NOEXCEPT : exception("bad cast") {} 348 bad_cast(const char* const __message) _NOEXCEPT : exception(__message) {} 351 class bad_typeid : public exception { [all …]
|
| H A D | stdexcept | 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 31 class xxx_error : public exception // at least indirectly 46 #include <__exception/exception.h> 77 class _LIBCPP_EXPORTED_FROM_ABI logic_error : public exception { 97 _LIBCPP_HIDE_FROM_ABI explicit logic_error(const char* __s) : exception(__s) {} 101 class _LIBCPP_EXPORTED_FROM_ABI runtime_error : public exception { 121 _LIBCPP_HIDE_FROM_ABI explicit runtime_error(const char* __s) : exception(__s) {} 283 # include <exception>
|
| /freebsd-14.2/sys/riscv/riscv/ |
| H A D | trap.c | 310 uint64_t exception; in do_trap_supervisor() local 334 switch (exception) { in do_trap_supervisor() 361 kdb_trap(exception, 0, frame); in do_trap_supervisor() 376 exception, frame->tf_stval); in do_trap_supervisor() 383 uint64_t exception; in do_trap_user() local 411 switch (exception) { in do_trap_user() 416 exception); in do_trap_user() 423 exception); in do_trap_user() 448 exception); in do_trap_user() 453 exception); in do_trap_user() [all …]
|
| /freebsd-14.2/contrib/opencsd/decoder/source/etmv3/ |
| H A D | trc_pkt_elem_etmv3.cpp | 59 m_pkt_data.exception.bits.present = 0; in Clear() 127 m_pkt_data.exception.bits.cm_irq_n = irq_n; in SetException() 128 m_pkt_data.exception.bits.cm_resume = resume; in SetException() 130 m_pkt_data.exception.number = number; in SetException() 131 m_pkt_data.exception.type = type; in SetException() 134 m_pkt_data.exception.bits.present = 1; in SetException() 507 if(m_pkt_data.exception.bits.present) in getBranchAddressStr() 669 if(m_pkt_data.exception.bits.cm_type) in getExcepStr() 671 if(m_pkt_data.exception.number < 0x18) in getExcepStr() 677 if(m_pkt_data.exception.bits.cancel) in getExcepStr() [all …]
|
| /freebsd-14.2/contrib/llvm-project/libcxx/src/support/runtime/ |
| H A D | exception_fallback.ipp | 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 46 // handler should not throw exception 47 fprintf(stderr, "terminate_handler unexpectedly threw an exception\n"); 61 exception::~exception() noexcept {} 63 const char* exception::what() const noexcept { return "std::exception"; }
|
| H A D | exception_msvc.ipp | 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 55 // handler should not throw exception 56 fprintf(stderr, "terminate_handler unexpectedly threw an exception\n"); 79 exception::~exception() noexcept {} 81 const char* exception::what() const noexcept { return "std::exception"; }
|
| H A D | 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-14.2/sys/dev/dpaa/ |
| H A D | if_dtsec.c | 138 dtsec_fm_mac_ex_to_str(e_FmMacExceptions exception) in dtsec_fm_mac_ex_to_str() argument 142 for (i = 0; dtsec_fm_mac_exceptions[i].num != exception && in dtsec_fm_mac_ex_to_str() 154 e_FmMacExceptions exception) in dtsec_fm_mac_mdio_event_callback() argument 160 dtsec_fm_mac_ex_to_str(exception)); in dtsec_fm_mac_mdio_event_callback() 170 dtsec_fm_mac_ex_to_str(exception)); in dtsec_fm_mac_exception_callback() 245 dtsec_fm_port_ex_to_str(e_FmPortExceptions exception) in dtsec_fm_port_ex_to_str() argument 248 switch (exception) { in dtsec_fm_port_ex_to_str() 258 e_FmPortExceptions exception) in dtsec_fm_port_rx_exception_callback() argument 264 dtsec_fm_port_ex_to_str(exception)); in dtsec_fm_port_rx_exception_callback() 269 e_FmPortExceptions exception) in dtsec_fm_port_tx_exception_callback() argument [all …]
|
| /freebsd-14.2/sys/contrib/dev/mediatek/mt76/mt7996/ |
| H A D | coredump.c | 102 bool *exception) in mt7996_coredump_fw_state() argument 114 *exception = !!count; in mt7996_coredump_fw_state() 119 bool exception) in mt7996_coredump_fw_stack() argument 134 if (!exception) { in mt7996_coredump_fw_stack() 156 if (!exception) { in mt7996_coredump_fw_stack() 169 bool exception; in mt7996_coredump_build() local 201 mt7996_coredump_fw_state(dev, dump, &exception); in mt7996_coredump_build() 202 mt7996_coredump_fw_stack(dev, dump, exception); in mt7996_coredump_build()
|
| /freebsd-14.2/contrib/opencsd/decoder/include/opencsd/ptm/ |
| H A D | trc_pkt_elem_ptm.h | 109 const bool isBranchExcepPacket() const { return (exception.bits.present == 1); }; in isBranchExcepPacket() 110 const ocsd_armv7_exception excepType() const { return exception.type; }; in excepType() 111 const uint16_t excepNum() const { return exception.number; }; in excepNum() 186 exception.bits.present = 1; in SetException() 187 exception.number = number; in SetException() 188 exception.type = type; in SetException()
|
| /freebsd-14.2/sys/contrib/dev/mediatek/mt76/mt7915/ |
| H A D | coredump.c | 145 bool *exception) in mt7915_coredump_fw_state() argument 163 *exception = !!count; in mt7915_coredump_fw_state() 168 bool exception) in mt7915_coredump_fw_trace() argument 190 if (exception) { in mt7915_coredump_fw_trace() 225 bool exception) in mt7915_coredump_fw_stack() argument 230 if (!exception) in mt7915_coredump_fw_stack() 240 if (!exception) in mt7915_coredump_fw_stack() 309 bool exception; in mt7915_coredump_build() local 341 mt7915_coredump_fw_state(dev, dump, &exception); in mt7915_coredump_build() 342 mt7915_coredump_fw_trace(dev, dump, exception); in mt7915_coredump_build() [all …]
|
| /freebsd-14.2/lib/libcxxrt/ |
| H A D | Version.map | 307 "std::exception::exception(std::exception const&)"; 308 "std::exception::exception()"; 309 "std::exception::operator=(std::exception const&)"; 348 "std::exception::~exception()"; 352 "std::exception::what() const"; 362 "vtable for std::exception"; 369 "typeinfo for std::exception"; 375 "typeinfo name for std::exception";
|
| /freebsd-14.2/tests/sys/fifo/ |
| H A D | fifo_io.c | 877 *exception = (fds[0].revents & POLLERR) ? 1 : 0; in poll_status() 902 *exception = FD_ISSET(fd, &exceptfds) ? 1 : 0; in select_status() 952 int *exception, const char *testname) in kqueue_status() argument 968 *readable = *writable = *exception = 0; in kqueue_status() 1012 int readable, writable, exception; in assert_status() local 1018 exception != assert_exception) { in assert_status() 1020 fdname, readable, writable, exception, conditionname); in assert_status() 1028 exception != assert_exception) { in assert_status() 1030 fdname, readable, writable, exception, conditionname); in assert_status() 1039 exception != assert_exception) { in assert_status() [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/src/arm/ |
| H A D | keystone-k2hk.dtsi | 167 interrupt-names = "vring", "exception"; 183 interrupt-names = "vring", "exception"; 199 interrupt-names = "vring", "exception"; 215 interrupt-names = "vring", "exception"; 231 interrupt-names = "vring", "exception"; 247 interrupt-names = "vring", "exception"; 263 interrupt-names = "vring", "exception"; 279 interrupt-names = "vring", "exception";
|
| /freebsd-14.2/contrib/opencsd/decoder/include/opencsd/etmv3/ |
| H A D | trc_pkt_elem_etmv3.h | 125 const bool isExcepPkt() const { return (m_pkt_data.exception.bits.present == 1); }; in isExcepPkt() 126 const ocsd_armv7_exception excepType() const { return m_pkt_data.exception.type; }; in excepType() 127 const uint16_t excepNum() const { return m_pkt_data.exception.number; }; in excepNum() 128 …t bool isExcepCancel() const { return (m_pkt_data.exception.bits.present == 1) && (m_pkt_data.exce… in isExcepCancel()
|
| /freebsd-14.2/contrib/atf/atf-c++/detail/ |
| H A 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-14.2/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/test/ |
| H A D | test_libzfs_core.py | 487 for e in ctx.exception.errors: 501 for e in ctx.exception.errors: 514 for e in ctx.exception.errors: 525 for e in ctx.exception.errors: 537 for e in ctx.exception.errors: 552 for e in ctx.exception.errors: 566 for e in ctx.exception.errors: 581 for e in ctx.exception.errors: 593 for e in ctx.exception.errors: 618 for e in ctx.exception.errors: [all …]
|
| /freebsd-14.2/sys/contrib/ncsw/inc/Peripherals/ |
| H A D | fm_macsec_ext.h | 88 e_FmMacsecExceptions exception); 345 t_Error FM_MACSEC_ConfigException(t_Handle h_FmMacsec, e_FmMacsecExceptions exception, bool enable); 414 t_Error FM_MACSEC_SetException(t_Handle h_FmMacsec, e_FmMacsecExceptions exception, bool enable); 523 e_FmMacsecSecYExceptions exception); 883 t_Error FM_MACSEC_SECY_ConfigException(t_Handle h_FmMacsecSecY, e_FmMacsecSecYExceptions exception,… 1219 t_Error FM_MACSEC_SECY_SetException(t_Handle h_FmMacsecSecY, e_FmMacsecExceptions exception, bool e…
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | AppleArm64ExceptionClass.def | 5 |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 9 // Defines ESR exception classes for Apple arm64* targets. 10 // These largely map 1:1 to the exception classes defined in ARM's architecture
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/nios2/ |
| H A D | nios2.txt | 30 - altr,fast-tlb-miss-addr: Specifies CPU fast TLB miss exception address 31 - altr,exception-addr: Specifies CPU exception address 59 altr,exception-addr = <0xd0000020>;
|