Home
last modified time | relevance | path

Searched full:exception (Results 1 – 25 of 5351) sorted by relevance

12345678910>>...215

/OK3568_Linux_fs/kernel/arch/c6x/kernel/
H A Dtraps.c102 { "Oops - software exception", SIGILL, ILL_ILLTRP },
103 { "Oops - unknown exception", SIGILL, ILL_ILLOPC }
108 { "Oops - external exception", SIGBUS, BUS_ADRERR },
109 { "Oops - external exception", SIGBUS, BUS_ADRERR },
110 { "Oops - external exception", SIGBUS, BUS_ADRERR },
111 { "Oops - external exception", SIGBUS, BUS_ADRERR },
112 { "Oops - external exception", SIGBUS, BUS_ADRERR },
113 { "Oops - external exception", SIGBUS, BUS_ADRERR },
114 { "Oops - external exception", SIGBUS, BUS_ADRERR },
115 { "Oops - external exception", SIGBUS, BUS_ADRERR },
[all …]
/OK3568_Linux_fs/kernel/arch/xtensa/kernel/
H A Dvectors.S4 * This file contains all exception vectors (user, kernel, and double),
7 * exception occurs.
20 * We use a two-level table approach. The user and kernel exception vectors
21 * use a first-level dispatch table to dispatch the exception to a registered
23 * The default handler sets up a C-stack and dispatches the exception to a
36 * indicate that the exception is either a double or a regular exception:
38 * PT_DEPC >= VALID_DOUBLE_EXCEPTION_ADDRESS: double exception
39 * < VALID_DOUBLE_EXCEPTION_ADDRESS: regular exception
41 * Note: Neither the kernel nor the user exception handler generate literals.
60 * User exception vector. (Exceptions with PS.UM == 1, PS.EXCM == 0)
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Dexception.hpp8 struct Exception : std::runtime_error { struct
9 Exception(const char *msg) : std::runtime_error(msg) {} in Exception() argument
10 Exception(const std::string &msg) : std::runtime_error(msg) {} in Exception() function
13 struct SpriteImageException : Exception {
14 SpriteImageException(const char *msg) : Exception(msg) {} in SpriteImageException()
15 SpriteImageException(const std::string &msg) : Exception(msg) {} in SpriteImageException()
18 struct MisuseException : Exception {
19 MisuseException(const char *msg) : Exception(msg) {} in MisuseException()
20 MisuseException(const std::string &msg) : Exception(msg) {} in MisuseException()
23 struct StyleParseException : Exception {
[all …]
/OK3568_Linux_fs/kernel/arch/powerpc/kernel/
H A Dhead_40x.S8 * Low-level exception handers, MMU support, and rewrite.
81 * critical exception prolog.
97 * Exception prolog for critical exceptions. This is a little different
98 * from the normal exception prolog above since a critical exception
99 * can potentially occur at any point during normal exception processing.
127 stw r9,_ESR(r11); /* exception was taken */\
135 lis r10, STACK_FRAME_REGS_MARKER@ha; /* exception frame marker */\
146 * now phys stack/exception frame pointer
155 * Exception vectors.
165 * 0x0100 - Critical Interrupt Exception
[all …]
H A Dhead_booke.h12 * Macros used for common Book-e exception handling
32 * entries are available for specific exception use in the event a handler
62 1 : subi r11, r11, INT_FRAME_SIZE; /* Allocate exception frame */ \
80 lis r10, STACK_FRAME_REGS_MARKER@ha;/* exception frame marker */ \
123 lis r12, STACK_FRAME_REGS_MARKER@ha /* exception frame marker */
183 /* To handle the additional exception priority levels on 40x and Book-E
191 * GPR to use as the base for indirect access to the exception stacks. This
224 * Exception prolog for critical/machine check exceptions. This is a
225 * little different from the normal exception prolog above since a
226 * critical/machine check exception can potentially occur at any point
[all …]
/OK3568_Linux_fs/kernel/drivers/acpi/acpica/
H A Dutexcep.c4 * Module Name: utexcep - Exception code support
23 * RETURN: A string containing the exception text. A valid pointer is
26 * DESCRIPTION: This function translates an ACPI exception into an ASCII
32 const struct acpi_exception_info *exception; in acpi_format_exception() local
36 exception = acpi_ut_validate_exception(status); in acpi_format_exception()
37 if (!exception) { in acpi_format_exception()
39 /* Exception code was not recognized */ in acpi_format_exception()
42 "Unknown exception code: 0x%8.8X", status)); in acpi_format_exception()
47 return (exception->name); in acpi_format_exception()
58 * RETURN: A string containing the exception text. NULL if exception is in ACPI_EXPORT_SYMBOL()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/protozero/1.5.2/include/protozero/
H A Dexception.hpp14 * @file exception.hpp
19 #include <exception>
28 * derive from this exception.
30 struct exception : std::exception { struct
32 const char* what() const noexcept override { return "pbf exception"; } in what() argument
36 * This exception is thrown when parsing a varint thats larger than allowed.
39 struct varint_too_long_exception : exception {
41 const char* what() const noexcept override { return "varint too long exception"; } in what()
45 * This exception is thrown when the wire type of a pdf field is unknown.
48 struct unknown_pbf_wire_type_exception : exception {
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/
H A Dexception.h1 // Exception Handling support header for -*- C++ -*-
18 // permissions described in the GCC Runtime Library Exception, version
22 // a copy of the GCC Runtime Library Exception along with this program;
26 /** @file bits/exception.h
57 * your own %exception classes, or use a different hierarchy, or to
60 class exception
63 exception() _GLIBCXX_NOTHROW { } in exception() function
64 virtual ~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_NOTHROW;
66 exception(const exception&) = default;
67 exception& operator=(const exception&) = default;
[all …]
H A Dfunctexcept.h1 // Function-Based Exception Support -*- C++ -*-
17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
27 * Do not attempt to use it directly. @headername{exception}
33 // ISO C++ 14882: 19.1 Exception classes
46 // Helper for exception objects in <except> in _GLIBCXX_VISIBILITY()
50 // Helper for exception objects in <new> in _GLIBCXX_VISIBILITY()
54 // Helper for exception objects in <typeinfo> in _GLIBCXX_VISIBILITY()
61 // Helpers for exception objects in <stdexcept> in _GLIBCXX_VISIBILITY()
93 // Helpers for exception objects in <ios> in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/
H A Dexception.h1 // Exception Handling support header for -*- C++ -*-
18 // permissions described in the GCC Runtime Library Exception, version
22 // a copy of the GCC Runtime Library Exception along with this program;
26 /** @file bits/exception.h
57 * your own %exception classes, or use a different hierarchy, or to
60 class exception
63 exception() _GLIBCXX_NOTHROW { } in exception() function
64 virtual ~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_NOTHROW;
66 exception(const exception&) = default;
67 exception& operator=(const exception&) = default;
[all …]
H A Dfunctexcept.h1 // Function-Based Exception Support -*- C++ -*-
17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
27 * Do not attempt to use it directly. @headername{exception}
33 // ISO C++ 14882: 19.1 Exception classes
46 // Helper for exception objects in <except> in _GLIBCXX_VISIBILITY()
50 // Helper for exception objects in <new> in _GLIBCXX_VISIBILITY()
54 // Helper for exception objects in <typeinfo> in _GLIBCXX_VISIBILITY()
61 // Helpers for exception objects in <stdexcept> in _GLIBCXX_VISIBILITY()
93 // Helpers for exception objects in <ios> in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/kernel/arch/microblaze/kernel/
H A Dexceptions.c2 * HW exception handling
64 die("Exception in kernel mode", regs, signr); in _exception()
77 pr_warn("Exception %02x in %s mode, FSR=%08x PC=%08x ESR=%08x\n", in full_exception()
85 pr_debug("Illegal opcode exception in user mode\n"); in full_exception()
89 pr_warn("Illegal opcode exception in kernel mode.\n"); in full_exception()
90 die("opcode exception", regs, SIGBUS); in full_exception()
94 pr_debug("Instruction bus error exception in user mode\n"); in full_exception()
98 pr_warn("Instruction bus error exception in kernel mode.\n"); in full_exception()
99 die("bus exception", regs, SIGBUS); in full_exception()
103 pr_debug("Data bus error exception in user mode\n"); in full_exception()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-pydbus/
H A D0002-Support-transformation-between-D-Bus-errors-and-exce.patch30 + """Register and map decorated exception class to a DBus error."""
39 + """Map decorated exception class to a DBus error."""
48 + """Map decorated exception class to all unknown DBus errors."""
61 + """Set the exception class as a default."""
65 + """Map the exception class to a DBus name."""
70 + """Map and register the exception class to a DBus name."""
75 + """Is the exception registered?"""
79 + """Get the DBus name of the exception."""
83 + """Get the exception class mapped to the DBus name."""
87 + """Transform the message of the exception."""
[all …]
/OK3568_Linux_fs/kernel/arch/arm/nwfpe/
H A Dfpsr.h18 EXCEPTION TRAP ENABLE BYTE
20 CUMULATIVE EXCEPTION FLAGS BYTE
37 /* EXCEPTION TRAP ENABLE BYTE
42 #define BIT_IXE 0x00100000 /* inexact exception enable */
43 #define BIT_UFE 0x00080000 /* underflow exception enable */
44 #define BIT_OFE 0x00040000 /* overflow exception enable */
45 #define BIT_DZE 0x00020000 /* divide by zero exception enable */
46 #define BIT_IOE 0x00010000 /* invalid operation exception enable */
58 #define BIT_NE 0x00000200 /* NaN exception bit */
61 /* CUMULATIVE EXCEPTION FLAGS BYTE
[all …]
/OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/arm64/
H A Darmv8-recommended.json321 "PublicDescription": "Exception taken, Other synchronous",
324 "BriefDescription": "Exception taken, Other synchronous"
327 "PublicDescription": "Exception taken, Supervisor Call",
330 "BriefDescription": "Exception taken, Supervisor Call"
333 "PublicDescription": "Exception taken, Instruction Abort",
336 "BriefDescription": "Exception taken, Instruction Abort"
339 "PublicDescription": "Exception taken, Data Abort and SError",
342 "BriefDescription": "Exception taken, Data Abort and SError"
345 "PublicDescription": "Exception taken, IRQ",
348 "BriefDescription": "Exception taken, IRQ"
[all …]
/OK3568_Linux_fs/kernel/arch/m68k/fpsp040/
H A Dskeleton.S7 | Each entry point for exception 'xxxx' begins with a 'jmp fpsp_xxxx'.
10 | the 'fpsp_xxxx' handler entry point should be placed in the exception
12 | exception is one that must be reported then there will be a
16 | that caused the exception will still be pending when the FPSP
18 | to handle the exception.
20 | If the exception was completely handled by the package, then
58 | Divide by Zero exception
80 | Inexact exception
83 | will probably want to clear the pending exception.
84 | The provided code will clear the E3 exception (if pending),
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/tm/
H A Dtm-unavailable.c5 * Force FP, VEC and VSX unavailable exception during transaction in all
11 * VEC/Altivec registers on abortion due to an unavailable exception in TM.
47 int exception; member
52 if (flags.touch_fp && flags.exception == FP_UNA_EXCEPTION) in expecting_failure()
55 if (flags.touch_vec && flags.exception == VEC_UNA_EXCEPTION) in expecting_failure()
60 * won't raise an exception. However since FP and VEC state are already in expecting_failure()
66 flags.exception == VSX_UNA_EXCEPTION) in expecting_failure()
113 if (flags.exception != FP_UNA_EXCEPTION && in tm_una_ping()
114 flags.exception != VEC_UNA_EXCEPTION && in tm_una_ping()
115 flags.exception != VSX_UNA_EXCEPTION) { in tm_una_ping()
[all …]
/OK3568_Linux_fs/kernel/arch/parisc/math-emu/
H A Ddecode_exc.c55 /* Exception register definitions */
110 /* exception_index is used to index the exception register queue. It in decode_fpu()
111 * always points at the last register that contains a valid exception. A in decode_fpu()
117 * Check for reserved-op exception. A reserved-op exception does not in decode_fpu()
118 * set any exception registers nor does it set the T-bit. If the T-bit in decode_fpu()
119 * is not set then a reserved-op exception occurred. in decode_fpu()
133 * Now we need to determine what type of exception occurred. in decode_fpu()
138 * On PA89: there are 5 different unimplemented exception in decode_fpu()
145 * Clear T-bit and exception register so that in decode_fpu()
160 * exception register contain the correct values in decode_fpu()
[all …]
/OK3568_Linux_fs/kernel/arch/c6x/include/asm/
H A Dtraps.h12 #define EXCEPT_TYPE_EXC 30 /* external exception */
13 #define EXCEPT_TYPE_IXF 1 /* internal exception */
14 #define EXCEPT_TYPE_SXF 0 /* software exception */
16 #define EXCEPT_CAUSE_LBX (1 << 7) /* loop buffer exception */
17 #define EXCEPT_CAUSE_PRX (1 << 6) /* privilege exception */
18 #define EXCEPT_CAUSE_RAX (1 << 5) /* resource access exception */
19 #define EXCEPT_CAUSE_RCX (1 << 4) /* resource conflict exception */
20 #define EXCEPT_CAUSE_OPX (1 << 3) /* opcode exception */
21 #define EXCEPT_CAUSE_EPX (1 << 2) /* execute packet exception */
22 #define EXCEPT_CAUSE_FPX (1 << 1) /* fetch packet exception */
[all …]
/OK3568_Linux_fs/kernel/arch/m68k/ifpsp060/
H A Dfskeleton.S70 | This is the exit point for the 060FPSP when an enabled overflow exception
72 | for enabled overflow conditions. The exception stack frame is an overflow
75 | The sample routine below simply clears the exception status bit and
89 | This is the exit point for the 060FPSP when an enabled underflow exception
91 | for enabled underflow conditions. The exception stack frame is an underflow
94 | The sample routine below simply clears the exception status bit and
107 | This is the exit point for the 060FPSP when an enabled operand error exception
109 | for enabled operand error exceptions. The exception stack frame is an operand error
113 | The sample routine below simply clears the exception status bit and
126 | This is the exit point for the 060FPSP when an enabled signalling NaN exception
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/doc/gdb/
H A DAda-Exception-GDB_002fMI-Catchpoint-Commands.html17 <title>Debugging with GDB: Ada Exception GDB/MI Catchpoint Commands</title>
19 <meta name="description" content="Debugging with GDB: Ada Exception GDB/MI Catchpoint Commands">
20 <meta name="keywords" content="Debugging with GDB: Ada Exception GDB/MI Catchpoint Commands">
29 …_002b_002b-Exception-GDB_002fMI-Catchpoint-Commands.html#C_002b_002b-Exception-GDB_002fMI-Catchpoi…
64 <a name="Ada-Exception-GDB_002fMI-Catchpoint-Commands"></a>
67 …b_002b-Exception-GDB_002fMI-Catchpoint-Commands.html#C_002b_002b-Exception-GDB_002fMI-Catchpoint-C…
70 <a name="Ada-Exception-GDB_002fMI-Catchpoints"></a>
71 <h4 class="subsection">27.9.2 Ada Exception <small>GDB/MI</small> Catchpoints</h4>
121 <h4 class="subheading">The <code>-catch-exception</code> Command</h4>
128 <pre class="smallexample"> -catch-exception [ -c <var>condition</var>] [ -d ] [ -e <var>exception-n…
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/doc/gdb/
H A DAda-Exception-GDB_002fMI-Catchpoint-Commands.html17 <title>Debugging with GDB: Ada Exception GDB/MI Catchpoint Commands</title>
19 <meta name="description" content="Debugging with GDB: Ada Exception GDB/MI Catchpoint Commands">
20 <meta name="keywords" content="Debugging with GDB: Ada Exception GDB/MI Catchpoint Commands">
29 …_002b_002b-Exception-GDB_002fMI-Catchpoint-Commands.html#C_002b_002b-Exception-GDB_002fMI-Catchpoi…
64 <a name="Ada-Exception-GDB_002fMI-Catchpoint-Commands"></a>
67 …b_002b-Exception-GDB_002fMI-Catchpoint-Commands.html#C_002b_002b-Exception-GDB_002fMI-Catchpoint-C…
70 <a name="Ada-Exception-GDB_002fMI-Catchpoints"></a>
71 <h4 class="subsection">27.9.2 Ada Exception <small>GDB/MI</small> Catchpoints</h4>
121 <h4 class="subheading">The <code>-catch-exception</code> Command</h4>
128 <pre class="smallexample"> -catch-exception [ -c <var>condition</var>] [ -d ] [ -e <var>exception-n…
[all …]
/OK3568_Linux_fs/kernel/security/
H A Ddevice_cgroup.c29 * exception list locking rules:
153 * dev_exception_clean - frees all entries of the exception list
154 * @dev_cgroup: dev_cgroup with the exception list to be cleaned
303 * match_exception - iterates the exception list trying to find a complete match
310 * It is considered a complete match if an exception is found that will
313 * Return: true in case it matches an exception completely
329 /* provided access cannot have more than the exception rule */ in match_exception()
338 * match_exception_partial - iterates the exception list trying to find a partial match
345 * It is considered a partial match if an exception's range is found to
348 * any of the exception list.
[all …]
/OK3568_Linux_fs/u-boot/arch/microblaze/cpu/
H A Dexception.c17 /* loading address of exception EAR */ in _hw_exception_handler()
21 printf("Hardware exception at 0x%x address\n", address); in _hw_exception_handler()
23 printf("Return address from exception 0x%x\n", address); in _hw_exception_handler()
24 switch (state & 0x1f) { /* mask on exception cause */ in _hw_exception_handler()
26 puts("Unaligned data access exception\n"); in _hw_exception_handler()
29 puts("Illegal op-code exception\n"); in _hw_exception_handler()
32 puts("Instruction bus error exception\n"); in _hw_exception_handler()
35 puts("Data bus error exception\n"); in _hw_exception_handler()
38 puts("Divide by zero exception\n"); in _hw_exception_handler()
42 puts("Priviledged or stack protection violation exception\n"); in _hw_exception_handler()
[all …]
/OK3568_Linux_fs/kernel/arch/s390/kernel/
H A Dtraps.c84 die(regs, "Unknown program exception"); in default_trap_handler()
94 "addressing exception")
96 "execute exception")
98 "fixpoint divide exception")
100 "fixpoint overflow exception")
102 "HFP overflow exception")
104 "HFP underflow exception")
106 "HFP significance exception")
108 "HFP divide exception")
110 "HFP square root exception")
[all …]

12345678910>>...215