Home
last modified time | relevance | path

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

1234567

/Zephyr-latest/arch/x86/core/ia32/
Dgdbstub.c22 unsigned int exception; in get_exception() local
26 exception = GDB_EXCEPTION_DIVIDE_ERROR; in get_exception()
29 exception = GDB_EXCEPTION_BREAKPOINT; in get_exception()
32 exception = GDB_EXCEPTION_BREAKPOINT; in get_exception()
35 exception = GDB_EXCEPTION_OVERFLOW; in get_exception()
38 exception = GDB_EXCEPTION_OVERFLOW; in get_exception()
41 exception = GDB_EXCEPTION_INVALID_INSTRUCTION; in get_exception()
44 exception = GDB_EXCEPTION_DIVIDE_ERROR; in get_exception()
47 exception = GDB_EXCEPTION_MEMORY_FAULT; in get_exception()
50 exception = GDB_EXCEPTION_INVALID_MEMORY; in get_exception()
[all …]
/Zephyr-latest/scripts/tests/twister/
Dtest_cmakecache.py43 not isinstance(expected_bool, bool) else nullcontext() as exception:
46 if exception is None:
49 assert str(exception.value) == f'invalid bool {cmake_bool}'
137 isinstance(expected, Exception) else nullcontext() as exception:
140 if exception is not None:
141 assert repr(exception.value) == repr(expected)
241 nullcontext() as exception:
245 if exception is None:
Dtest_twister.py50 with pytest.raises(Exception) as exception:
52 assert str(exception.value) == "Schema validation failed"
101 with pytest.raises(ConfigurationError) as exception:
104 assert len(exception.value.args) == 1
105 assert exception.value.args[0] == str(filename) + ": " + "Dummy message."
Dtest_testsuite.py298 def test_get_unique_exception(testsuite_root, workdir, name, exception): argument
306 assert unique == exception
431 else nullcontext() as exception:
438 if exception:
439 assert str(exception.value) == 'can\'t find ztest_run_test_suite'
663 expected_exception else nullcontext() as exception:
672 assert str(expected_exception) == str(exception.value)
848 else nullcontext() as exception:
851 if exception:
852 assert str(exception.value) == 'Harness config error: console harness' \
/Zephyr-latest/arch/xtensa/core/
Dgdbstub.c335 unsigned int exception; in get_gdb_exception_reason() local
340 exception = GDB_EXCEPTION_INVALID_INSTRUCTION; in get_gdb_exception_reason()
344 exception = GDB_EXCEPTION_MEMORY_FAULT; in get_gdb_exception_reason()
348 exception = GDB_EXCEPTION_MEMORY_FAULT; in get_gdb_exception_reason()
352 exception = GDB_EXCEPTION_DIVIDE_ERROR; in get_gdb_exception_reason()
356 exception = GDB_EXCEPTION_MEMORY_FAULT; in get_gdb_exception_reason()
360 exception = GDB_EXCEPTION_MEMORY_FAULT; in get_gdb_exception_reason()
364 exception = GDB_EXCEPTION_MEMORY_FAULT; in get_gdb_exception_reason()
368 exception = GDB_EXCEPTION_MEMORY_FAULT; in get_gdb_exception_reason()
372 exception = GDB_EXCEPTION_MEMORY_FAULT; in get_gdb_exception_reason()
[all …]
/Zephyr-latest/soc/wch/ch32v00x/
Dsoc_irq.S13 SECTION_FUNC(exception.other, __soc_is_irq)
18 SECTION_FUNC(exception.other, __soc_handle_irq)
/Zephyr-latest/soc/nordic/common/vpr/
Dsoc_context.S12 SECTION_FUNC(exception.other, __soc_save_context)
18 SECTION_FUNC(exception.other, __soc_restore_context)
/Zephyr-latest/soc/sensry/ganymed/sy1xx/common/
Dvector_table.ld10 KEEP(*(".exception.entry.*")) /* contains _isr_wrapper */
11 *(".exception.other.*")
/Zephyr-latest/soc/openisa/rv32m1/
Dvector_table.ld10 * for MCUboot support, so .reset.* and .exception.*
28 KEEP(*(".exception.entry.*")) /* contains _isr_wrapper */
29 *(".exception.other.*")
Dsoc_irq.S32 SECTION_FUNC(exception.other, __soc_handle_irq)
50 SECTION_FUNC(exception.other, __soc_save_context)
68 SECTION_FUNC(exception.other, __soc_restore_context)
/Zephyr-latest/soc/espressif/esp32c6/
Dsoc_irq.S14 SECTION_FUNC(exception.other, __soc_is_irq)
19 SECTION_FUNC(exception.other, __soc_handle_irq)
/Zephyr-latest/soc/andestech/ae350/
Dsoc_irq.S18 SECTION_FUNC(exception.other, __soc_save_context)
35 SECTION_FUNC(exception.other, __soc_restore_context)
/Zephyr-latest/soc/telink/tlsr/tlsr951x/
Dsoc_irq.S22 SECTION_FUNC(exception.other, __soc_save_context)
39 SECTION_FUNC(exception.other, __soc_restore_context)
/Zephyr-latest/drivers/interrupt_controller/
Dintc_nuclei_eclic.S22 SECTION_FUNC(exception.other, __soc_handle_irq)
36 SECTION_FUNC(exception.other, __soc_handle_all_irqs)
Dintc_nrfx_clic.S14 SECTION_FUNC(exception.other, __soc_handle_irq)
/Zephyr-latest/soc/ite/ec/common/
Dsoc_irq.S26 SECTION_FUNC(exception.other, __soc_handle_irq)
/Zephyr-latest/include/zephyr/arch/nios2/
Dlinker.ld28 * _EXC_VECTOR General exception vector
37 * with the exception vector 0x20 bytes after it.
39 * the exception vector is in RAM
117 KEEP(*(".exception.entry.*"))
118 *(".exception.other.*")
180 /* Altera strongly recommends keeping exception entry code in RAM
191 KEEP(*(".exception.entry.*"))
192 *(".exception.other.*")
/Zephyr-latest/tests/arch/arm/arm_interrupt/
DREADME.txt15 ARM spurious exception handler.
17 stack overflow errors explicitly due to exception frame context
27 attempts are caught and successfully trigger a CPU exception in the case
59 E: ***** Debug monitor exception *****
60 Null-pointer exception?
65 E: >>> ZEPHYR FATAL ERROR 0: CPU exception on CPU 0
112 E: >>> ZEPHYR FATAL ERROR 0: CPU exception on CPU 0
136 E: >>> ZEPHYR FATAL ERROR 0: CPU exception on CPU 0
/Zephyr-latest/soc/common/riscv-privileged/
Dsoc_irq.S27 SECTION_FUNC(exception.other, __soc_handle_irq)
/Zephyr-latest/tests/arch/x86/static_idt/
DREADME.txt22 Testing to see exception handler executes properly
24 - Expect to see unhandled interrupt/exception message
/Zephyr-latest/soc/neorv32/
Dsoc_irq.S15 SECTION_FUNC(exception.other, __soc_handle_irq)
/Zephyr-latest/soc/espressif/esp32c2/
Dsoc_irq.S13 SECTION_FUNC(exception.other, __soc_handle_irq)
/Zephyr-latest/soc/espressif/esp32c3/
Dsoc_irq.S13 SECTION_FUNC(exception.other, __soc_handle_irq)
/Zephyr-latest/samples/arch/mpu/mpu_test/
DREADME.rst59 <err> os: >>> ZEPHYR FATAL ERROR 0: CPU exception on CPU 0
75 <err> os: >>> ZEPHYR FATAL ERROR 0: CPU exception on CPU 0
89 <err> os: >>> ZEPHYR FATAL ERROR 0: CPU exception on CPU 0
97 dereference the program counter from the exception stack frame, causing a second fault
117 <err> os: >>> ZEPHYR FATAL ERROR 0: CPU exception on CPU 0
130 <err> os: >>> ZEPHYR FATAL ERROR 0: CPU exception on CPU 0
/Zephyr-latest/arch/mips/core/
Dswap.S22 SECTION_FUNC(exception.other, arch_swap)

1234567