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

123456

/freebsd-current/contrib/llvm-project/libcxx/include/__exception/
H A Dexception.h5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
14 // <vcruntime_exception.h> defines its own std::exception and std::bad_exception types,
27 // The std::exception class was already included above, but we're explicit about this condition here for clarity.
30 // However, <vcruntime_exception.h> does not define std::exception and std::bad_exception
33 // Since libc++ still wants to provide the std::exception hierarchy even when _HAS_EXCEPTIONS == 0
35 // of the VCRuntime std::exception and std::bad_exception types in that mode.
42 class exception { // base of all library exceptions
44 exception() _NOEXCEPT : __data_() {}
46 explicit exception(char const* __message) _NOEXCEPT : __data_() {
51 exception(exceptio
[all...]
/freebsd-current/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-current/contrib/googletest/googlemock/test/
H A Dgmock_ex_test.cc32 #include <exception>
69 FAIL() << "Google Test does not try to catch an exception of type "
74 } catch (const std::exception& ex) {
/freebsd-current/contrib/llvm-project/libcxx/src/
H A Dexception.cpp5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9 #include <exception>
/freebsd-current/lib/libdevdctl/
H A DMakefile6 exception.h \
11 exception.cc \
/freebsd-current/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_.cc39 #include <exception> // for set_terminate
47 fprintf(stderr, "%s\n", "Unhandled C++ exception terminating the program.");
/freebsd-current/sys/arm64/arm64/
H A Dtrap.c76 /* Called from exception.S */
270 * of the exclusive monitors after data abort exception is unknown.
356 * If the exception was because of a read or cache operation
450 fpe_trap(struct thread *td, void *addr, uint32_t exception) argument
455 if ((exception & ISS_FP_TFV) != 0) {
456 if ((exception & ISS_FP_IOF) != 0)
458 else if ((exception & ISS_FP_DZF) != 0)
460 else if ((exception & ISS_FP_OFF) != 0)
462 else if ((exception & ISS_FP_UFF) != 0)
464 else if ((exception
477 uint32_t exception; local
595 uint32_t exception; local
[all...]
/freebsd-current/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-current/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-current/lib/libdevdctl/tests/
H A DMakefile10 event.cc exception.cc \
/freebsd-current/cddl/usr.sbin/zfsd/
H A Dzfsd_main.cc53 #include <devdctl/exception.h>
/freebsd-current/sys/riscv/riscv/
H A Dtrap.c81 /* Called from exception.S */
310 uint64_t exception; local
319 exception = frame->tf_scause & SCAUSE_CODE;
327 if (dtrace_trap_func != NULL && (*dtrace_trap_func)(frame, exception))
331 CTR4(KTR_TRAP, "%s: exception=%lu, sepc=%#lx, stval=%#lx", __func__,
332 exception, frame->tf_sepc, frame->tf_stval);
334 switch (exception) {
339 panic("Memory access exception at %#lx: %#lx",
346 panic("Misaligned address exception at %#lx: %#lx",
361 kdb_trap(exception,
383 uint64_t exception; local
[all...]
/freebsd-current/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-current/sys/contrib/ncsw/Peripherals/FM/MACSEC/
H A Dfm_macsec_secy.h53 #define GET_EXCEPTION_FLAG(bitMask, exception) switch (exception){ \
/freebsd-current/sys/contrib/dev/mediatek/mt76/mt7996/
H A Dcoredump.c102 bool *exception)
112 strscpy(dump->fw_state, "exception", sizeof(dump->fw_state));
114 *exception = !!count;
119 bool exception)
134 if (!exception) {
156 if (!exception) {
169 bool exception; local
201 mt7996_coredump_fw_state(dev, dump, &exception);
202 mt7996_coredump_fw_stack(dev, dump, exception);
101 mt7996_coredump_fw_state(struct mt7996_dev *dev, struct mt7996_coredump *dump, bool *exception) argument
118 mt7996_coredump_fw_stack(struct mt7996_dev *dev, struct mt7996_coredump *dump, bool exception) argument
/freebsd-current/contrib/llvm-project/libcxx/include/__expected/
H A Dbad_expected_access.h6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
13 #include <__exception/exception.h>
31 class bad_expected_access<void> : public exception {
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dexception.inc6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
13 using std::exception;
/freebsd-current/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-current/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterInfoPOSIX_arm.h5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
38 uint32_t exception; member in struct:RegisterInfoPOSIX_arm::EXC
/freebsd-current/sys/dev/dpaa/
H A Dif_dtsec.c139 dtsec_fm_mac_ex_to_str(e_FmMacExceptions exception) argument
143 for (i = 0; dtsec_fm_mac_exceptions[i].num != exception &&
155 e_FmMacExceptions exception)
160 device_printf(sc->sc_dev, "MDIO event %i: %s.\n", exception,
161 dtsec_fm_mac_ex_to_str(exception));
165 dtsec_fm_mac_exception_callback(t_Handle app, e_FmMacExceptions exception) argument
170 device_printf(sc->sc_dev, "MAC exception %i: %s.\n", exception,
171 dtsec_fm_mac_ex_to_str(exception));
223 "exception
154 dtsec_fm_mac_mdio_event_callback(t_Handle h_App, e_FmMacExceptions exception) argument
246 dtsec_fm_port_ex_to_str(e_FmPortExceptions exception) argument
258 dtsec_fm_port_rx_exception_callback(t_Handle app, e_FmPortExceptions exception) argument
269 dtsec_fm_port_tx_exception_callback(t_Handle app, e_FmPortExceptions exception) argument
[all...]
/freebsd-current/bin/sh/
H A Derror.h36 * jump to when an exception occurs, and the global variable exception
37 * contains a code identifying the exception. To implement nested
38 * exception handlers, the user should save the value of handler on entry
51 extern volatile sig_atomic_t exception;
/freebsd-current/sys/contrib/dev/mediatek/mt76/mt7915/
H A Dcoredump.c145 bool *exception)
161 strscpy(dump->fw_state, "exception", sizeof(dump->fw_state));
163 *exception = !!count;
168 bool exception)
190 if (exception) {
225 bool exception)
230 if (!exception)
240 if (!exception)
309 bool exception; local
341 mt7915_coredump_fw_state(dev, dump, &exception);
144 mt7915_coredump_fw_state(struct mt7915_dev *dev, struct mt7915_coredump *dump, bool *exception) argument
167 mt7915_coredump_fw_trace(struct mt7915_dev *dev, struct mt7915_coredump *dump, bool exception) argument
224 mt7915_coredump_fw_stack(struct mt7915_dev *dev, struct mt7915_coredump *dump, bool exception) argument
[all...]

Completed in 361 milliseconds

123456