Searched refs:exception (Results 1 - 25 of 120) sorted by relevance

12345

/freebsd-13-stable/contrib/libcxxrt/
H A Dstdexcept.cc34 exception::exception() throw() {} function in class:std::exception
35 exception::~exception() {}
36 exception::exception(const exception&) throw() {} argument
37 exception& exception::operator=(const exception argument
[all...]
H A Dstdexcept.h35 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
[all...]
/freebsd-13-stable/lib/libdevdctl/
H A DMakefile7 exception.h \
12 exception.cc \
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgoogletest-death-test_ex_test.cc46 # include <exception> // For std::exception.
52 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw 1, ""), "threw an exception");
54 FAIL() << "An exception escaped a death test macro invocation "
60 class TestException : public std::exception {
66 // Verifies that the exception message is quoted in the failure text.
H A Dgoogletest-throw-on-failure-test_.cc41 #include <exception> // for set_terminate
47 fprintf(stderr, "%s\n", "Unhandled C++ exception terminating the program.");
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock_ex_test.cc68 FAIL() << "Google Test does not try to catch an exception of type "
73 } catch (const std::exception& ex) {
/freebsd-13-stable/sys/arm64/arm64/
H A Dtrap.c76 /* Called from exception.S */
248 * of the exclusive monitors after data abort exception is unknown.
363 uint32_t exception; local
367 /* Read the esr register to get the exception details */
369 exception = ESR_ELx_EXCEPTION(esr);
372 if (dtrace_trap_func != NULL && (*dtrace_trap_func)(frame, exception))
382 * be masked again in the exception handler's epilogue.
384 if (exception != EXCP_BRK && exception != EXCP_WATCHPT_EL1 &&
385 exception !
456 uint32_t exception; local
[all...]
/freebsd-13-stable/sys/riscv/riscv/
H A Dtrap.c78 /* Called from exception.S */
271 uint64_t exception; local
277 exception = frame->tf_scause & SCAUSE_CODE;
285 if (dtrace_trap_func != NULL && (*dtrace_trap_func)(frame, exception))
292 switch (exception) {
297 panic("Memory access exception at 0x%016lx\n", frame->tf_sepc);
311 kdb_trap(exception, 0, frame);
323 panic("Unknown kernel exception %lx trap value %lx\n",
324 exception, frame->tf_stval);
331 uint64_t exception; local
[all...]
/freebsd-13-stable/contrib/opencsd/decoder/include/opencsd/ptm/
H A Dtrc_pkt_elem_ptm.h109 const bool isBranchExcepPacket() const { return (exception.bits.present == 1); };
110 const ocsd_armv7_exception excepType() const { return exception.type; };
111 const uint16_t excepNum() const { return exception.number; };
186 exception.bits.present = 1;
187 exception.number = number;
188 exception.type = type;
/freebsd-13-stable/contrib/atf/atf-c++/detail/
H A Dexceptions_test.cpp96 } catch (const std::exception& e) {
97 ATF_FAIL(std::string("Got unexpected exception: ") + e.what());
112 } catch (const std::exception& e) {
113 ATF_FAIL(std::string("Got unexpected exception: ") + e.what());
130 } catch (const std::exception& e) {
131 ATF_FAIL(std::string("Got unexpected exception: ") + e.what());
/freebsd-13-stable/lib/libcxxrt/
H A DMakefile18 exception.cc\
/freebsd-13-stable/lib/libdevdctl/tests/
H A DMakefile11 event.cc exception.cc \
/freebsd-13-stable/cddl/usr.sbin/zfsd/
H A Dzfsd_main.cc53 #include <devdctl/exception.h>
/freebsd-13-stable/sys/contrib/ncsw/Peripherals/FM/MAC/
H A Dmemac.h54 #define GET_EXCEPTION_FLAG(bitMask, exception) switch (exception){ \
H A Dtgec.h68 #define GET_EXCEPTION_FLAG(bitMask, exception) switch (exception){ \
/freebsd-13-stable/sys/contrib/ncsw/Peripherals/FM/MACSEC/
H A Dfm_macsec_secy.h53 #define GET_EXCEPTION_FLAG(bitMask, exception) switch (exception){ \
/freebsd-13-stable/contrib/opencsd/decoder/source/etmv3/
H A Dtrc_pkt_elem_etmv3.cpp59 m_pkt_data.exception.bits.present = 0;
126 m_pkt_data.exception.bits.cancel = cancel ? 1 : 0;
127 m_pkt_data.exception.bits.cm_irq_n = irq_n;
128 m_pkt_data.exception.bits.cm_resume = resume;
129 m_pkt_data.exception.bits.cm_type = cm_type ? 1 : 0;
130 m_pkt_data.exception.number = number;
131 m_pkt_data.exception.type = type;
134 m_pkt_data.exception.bits.present = 1;
506 // exception?
507 if(m_pkt_data.exception
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterInfoPOSIX_arm.h5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
36 uint32_t exception; member in struct:RegisterInfoPOSIX_arm::EXC
/freebsd-13-stable/bin/sh/
H A Derror.h39 * jump to when an exception occurs, and the global variable exception
40 * contains a code identifying the exception. To implement nested
41 * exception handlers, the user should save the value of handler on entry
54 extern volatile sig_atomic_t exception;
H A Derror.c65 volatile sig_atomic_t exception; variable
73 * Called to raise an exception. Since C doesn't include exceptions, we
74 * just do a longjmp to the exception handler. The type of exception is
75 * stored in the global variable "exception".
77 * Interrupts are disabled; they should be reenabled when the exception is
87 exception = e;
152 * Exverror is called to raise the error exception. If the first argument
154 * formatting. It then raises the error exception.
162 * in child processes, and if an error exception ca
[all...]
/freebsd-13-stable/sys/dev/dpaa/
H A Dif_dtsec.c140 dtsec_fm_mac_ex_to_str(e_FmMacExceptions exception) argument
144 for (i = 0; dtsec_fm_mac_exceptions[i].num != exception &&
156 e_FmMacExceptions exception)
161 device_printf(sc->sc_dev, "MDIO event %i: %s.\n", exception,
162 dtsec_fm_mac_ex_to_str(exception));
166 dtsec_fm_mac_exception_callback(t_Handle app, e_FmMacExceptions exception) argument
171 device_printf(sc->sc_dev, "MAC exception %i: %s.\n", exception,
172 dtsec_fm_mac_ex_to_str(exception));
224 "exception
155 dtsec_fm_mac_mdio_event_callback(t_Handle h_App, e_FmMacExceptions exception) argument
247 dtsec_fm_port_ex_to_str(e_FmPortExceptions exception) argument
259 dtsec_fm_port_rx_exception_callback(t_Handle app, e_FmPortExceptions exception) argument
270 dtsec_fm_port_tx_exception_callback(t_Handle app, e_FmPortExceptions exception) argument
[all...]
H A Dif_dtsec.h134 e_FmPortExceptions exception);
136 e_FmPortExceptions exception);
/freebsd-13-stable/contrib/opencsd/decoder/include/opencsd/etmv3/
H A Dtrc_pkt_elem_etmv3.h125 const bool isExcepPkt() const { return (m_pkt_data.exception.bits.present == 1); };
126 const ocsd_armv7_exception excepType() const { return m_pkt_data.exception.type; };
127 const uint16_t excepNum() const { return m_pkt_data.exception.number; };
128 const bool isExcepCancel() const { return (m_pkt_data.exception.bits.present == 1) && (m_pkt_data.exception.bits.cancel == 1); };
/freebsd-13-stable/sys/contrib/openzfs/etc/init.d/
H A Dzfs-import.in72 local exception dir ZPOOL_IMPORT_PATH RET=0 r=1
127 for exception in $ZFS_POOL_EXCEPTIONS
129 [ "$pool" = "$exception" ] && continue 2
/freebsd-13-stable/sys/contrib/ncsw/inc/Peripherals/
H A Dfm_macsec_ext.h81 exception passing the exception identification.
85 @Param[in] exception The exception.
88 e_FmMacsecExceptions exception);
338 @Param[in] exception The exception to be selected.
345 t_Error FM_MACSEC_ConfigException(t_Handle h_FmMacsec, e_FmMacsecExceptions exception, bool enable);
404 @Description Calling this routine enables/disables the specified exception.
407 @Param[in] exception Th
[all...]

Completed in 301 milliseconds

12345