Home
last modified time | relevance | path

Searched refs:exception (Results 1 – 25 of 1380) sorted by relevance

12345678910>>...56

/freebsd-13-stable/contrib/llvm-project/libcxx/include/__exception/
HDexception.h42 class exception { // base of all library exceptions
44 exception() _NOEXCEPT : __data_() {}
46 explicit exception(char const* __message) _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 {
65 bad_exception() _NOEXCEPT : exception("bad exception") {}
72 class _LIBCPP_EXPORTED_FROM_ABI exception {
74 _LIBCPP_HIDE_FROM_ABI exception() _NOEXCEPT {}
[all …]
/freebsd-13-stable/contrib/libcxxrt/
HDstdexcept.cc34 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()
HDstdexcept.h35 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
HDexception.cc241 class exception class
244 virtual ~exception() throw();
656 static void releaseException(__cxa_exception *exception) in releaseException() argument
658 if (isDependentException(exception->unwindHeader.exception_class)) in releaseException()
660 __cxa_free_dependent_exception(exception+1); in releaseException()
663 if (__sync_sub_and_fetch(&exception->referenceCount, 1) == 0) in releaseException()
668 __cxa_free_exception(exception+1); in releaseException()
739 static_cast<const __class_type_info*>(&typeid(std::exception)); in report_failure()
744 std::exception *e = in report_failure()
745 static_cast<std::exception*>(e_ti->cast_to(static_cast<void*>(thrown_exception+1), in report_failure()
[all …]
/freebsd-13-stable/sys/arm64/arm64/
HDtrap.c425 fpe_trap(struct thread *td, void *addr, uint32_t exception) in fpe_trap() argument
430 if ((exception & ISS_FP_TFV) != 0) { in fpe_trap()
431 if ((exception & ISS_FP_IOF) != 0) in fpe_trap()
433 else if ((exception & ISS_FP_DZF) != 0) in fpe_trap()
435 else if ((exception & ISS_FP_OFF) != 0) in fpe_trap()
437 else if ((exception & ISS_FP_UFF) != 0) in fpe_trap()
439 else if ((exception & ISS_FP_IXF) != 0) in fpe_trap()
442 call_trapsignal(td, SIGFPE, code, addr, exception); in fpe_trap()
449 uint32_t exception; in do_el1h_sync() local
455 exception = ESR_ELx_EXCEPTION(esr); in do_el1h_sync()
[all …]
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
HDexception6 // 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
80 #include <__exception/exception.h>
HDtypeinfo6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
36 : public exception
46 : public exception
60 #include <__exception/exception.h>
328 class _LIBCPP_EXPORTED_FROM_ABI bad_cast : public exception {
337 class _LIBCPP_EXPORTED_FROM_ABI bad_typeid : public exception {
354 class bad_cast : public exception {
356 bad_cast() _NOEXCEPT : exception("bad cast") {}
359 bad_cast(const char* const __message) _NOEXCEPT : exception(__message) {}
362 class bad_typeid : public exception {
[all …]
HDstdexcept6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
31 class xxx_error : public exception // at least indirectly
45 #include <__exception/exception.h>
76 class _LIBCPP_EXPORTED_FROM_ABI logic_error : public exception {
96 _LIBCPP_HIDE_FROM_ABI explicit logic_error(const char* __s) : exception(__s) {}
100 class _LIBCPP_EXPORTED_FROM_ABI runtime_error : public exception {
120 _LIBCPP_HIDE_FROM_ABI explicit runtime_error(const char* __s) : exception(__s) {}
282 # include <exception>
/freebsd-13-stable/sys/riscv/riscv/
HDtrap.c272 uint64_t exception; in do_trap_supervisor() local
281 exception = frame->tf_scause & SCAUSE_CODE; in do_trap_supervisor()
289 if (dtrace_trap_func != NULL && (*dtrace_trap_func)(frame, exception)) in do_trap_supervisor()
294 exception, frame->tf_sepc, frame->tf_stval); in do_trap_supervisor()
296 switch (exception) { in do_trap_supervisor()
323 kdb_trap(exception, 0, frame); in do_trap_supervisor()
338 exception, frame->tf_stval); in do_trap_supervisor()
345 uint64_t exception; in do_trap_user() local
362 exception = frame->tf_scause & SCAUSE_CODE; in do_trap_user()
371 exception, frame->tf_sepc, frame->tf_stval); in do_trap_user()
[all …]
/freebsd-13-stable/contrib/opencsd/decoder/source/etmv3/
HDtrc_pkt_elem_etmv3.cpp59 m_pkt_data.exception.bits.present = 0; in Clear()
126 m_pkt_data.exception.bits.cancel = cancel ? 1 : 0; in SetException()
127 m_pkt_data.exception.bits.cm_irq_n = irq_n; in SetException()
128 m_pkt_data.exception.bits.cm_resume = resume; in SetException()
129 m_pkt_data.exception.bits.cm_type = cm_type ? 1 : 0; 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()
[all …]
/freebsd-13-stable/contrib/llvm-project/libcxx/src/support/runtime/
HDexception_fallback.ipp6 // 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"; }
HDexception_msvc.ipp6 // 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"; }
HDstdexcept_vcruntime.ipp5 // 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-13-stable/sys/dev/dpaa/
HDif_dtsec.c138 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
159 device_printf(sc->sc_dev, "MDIO event %i: %s.\n", exception, in dtsec_fm_mac_mdio_event_callback()
160 dtsec_fm_mac_ex_to_str(exception)); in dtsec_fm_mac_mdio_event_callback()
164 dtsec_fm_mac_exception_callback(t_Handle app, e_FmMacExceptions exception) in dtsec_fm_mac_exception_callback() argument
169 device_printf(sc->sc_dev, "MAC exception %i: %s.\n", exception, in dtsec_fm_mac_exception_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()
[all …]
/freebsd-13-stable/contrib/opencsd/decoder/include/opencsd/ptm/
HDtrc_pkt_elem_ptm.h109 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-13-stable/lib/libcxxrt/
HDVersion.map307 "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-13-stable/tests/sys/fifo/
HDfifo_io.c862 poll_status(int fd, int *readable, int *writable, int *exception, in poll_status() argument
877 *exception = (fds[0].revents & POLLERR) ? 1 : 0; in poll_status()
882 select_status(int fd, int *readable, int *writable, int *exception, in select_status() argument
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
1014 if (poll_status(fd, &readable, &writable, &exception, testname) < 0) in assert_status()
1018 exception != assert_exception) { in assert_status()
1020 fdname, readable, writable, exception, conditionname); in assert_status()
[all …]
/freebsd-13-stable/sys/contrib/device-tree/src/arm/
HDkeystone-k2hk.dtsi167 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-13-stable/contrib/opencsd/decoder/include/opencsd/etmv3/
HDtrc_pkt_elem_etmv3.h125 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-13-stable/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/test/
HDtest_libzfs_core.py486 self.assertEqual(len(ctx.exception.errors), len(snaps))
487 for e in ctx.exception.errors:
500 self.assertEqual(len(ctx.exception.errors), 1)
501 for e in ctx.exception.errors:
513 self.assertEqual(len(ctx.exception.errors), 1)
514 for e in ctx.exception.errors:
524 self.assertEqual(len(ctx.exception.errors), 1)
525 for e in ctx.exception.errors:
536 self.assertEqual(len(ctx.exception.errors), 1)
537 for e in ctx.exception.errors:
[all …]
/freebsd-13-stable/contrib/atf/atf-c++/detail/
Dexceptions_test.cpp96 } 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-13-stable/sys/contrib/ncsw/inc/Peripherals/
HDfm_macsec_ext.h88 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-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDAppleArm64ExceptionClass.def5 |* 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-13-stable/sys/contrib/device-tree/Bindings/nios2/
HDnios2.txt30 - 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>;
/freebsd-13-stable/sys/contrib/ncsw/Peripherals/FM/MACSEC/
HDfm_macsec.c177 t_Error FM_MACSEC_ConfigException(t_Handle h_FmMacsec, e_FmMacsecExceptions exception, bool enable) in FM_MACSEC_ConfigException() argument
184 … return p_FmMacsecControllerDriver->f_FM_MACSEC_ConfigException(h_FmMacsec, exception, enable); in FM_MACSEC_ConfigException()
226 t_Error FM_MACSEC_SetException(t_Handle h_FmMacsec, e_FmMacsecExceptions exception, bool enable) in FM_MACSEC_SetException() argument
233 return p_FmMacsecControllerDriver->f_FM_MACSEC_SetException(h_FmMacsec, exception, enable); in FM_MACSEC_SetException()

12345678910>>...56