Searched refs:exception (Results 1 – 25 of 90) sorted by relevance
1234
/hal_espressif-3.4.0/components/partition_table/test_gen_esp32part_host/ |
D | check_sizes_test.py | 70 self.assertIn('too small', str(e.exception)) 71 self.assertIn('too_big.bin', str(e.exception)) 78 self.assertIn('All', str(e.exception)) 79 self.assertIn('too small', str(e.exception)) 80 self.assertIn('just_too_big.bin', str(e.exception)) 99 self.assertIn('overlap', str(e.exception))
|
/hal_espressif-3.4.0/tools/ci/python_packages/tiny_test_fw/Utility/ |
D | __init__.py | 102 def handle_unexpected_exception(junit_test_case, exception): argument 111 e_str = str(exception) if str(exception) else repr(exception)
|
/hal_espressif-3.4.0/examples/protocols/asio/asio_chat/main/ |
D | asio_chat.cpp | 58 } catch (const std::exception &e) { in start_client() 100 } catch (const std::exception &e) { in app_main() 113 } catch (const std::exception &e) { in app_main()
|
/hal_espressif-3.4.0/examples/cxx/exceptions/ |
D | README.md | 1 # Example: C++ exception handling 9 …ompile time support (`-fexceptions` compiler flag) and run-time support for C++ exception handling. 11 The example source code declares a class which can throw exception from the constructor if the argu…
|
D | sdkconfig.ci | 1 # Enable C++ exceptions and set emergency pool size for exception objects
|
D | sdkconfig.defaults | 1 # Enable C++ exceptions and set emergency pool size for exception objects
|
/hal_espressif-3.4.0/tools/test_apps/system/no_embedded_paths/ |
D | check_for_file_paths.py | 70 if not any(re.search(exception, obj_file) for exception in EXCEPTIONS):
|
/hal_espressif-3.4.0/components/freertos/port/xtensa/ |
D | readme_xtensa.txt | 393 to support dynamic installation of exception 519 FreeRTOS provides a complete set of efficient exception and first-level 520 interrupt handlers installed at the appropriate exception and interrupt 533 usually in RAM. The exception and interrupt handlers are defined in 553 are handled. During interrupt and exception handling, the processor's 565 The following subsections describe the handling of each class of exception 572 exception vector. The exception type is identified by the EXCCAUSE 574 general exception). This port sets up PS to direct all such exceptions 586 Having allocated the exception stack frame, the user exception handler 592 returned to the code that caused the exception. The user-defined handler [all …]
|
/hal_espressif-3.4.0/components/esp_system/port/arch/xtensa/ |
D | panic_arch.c | 402 info->exception = PANIC_EXCEPTION_IWDT; in panic_soc_fill_info() 405 info->exception = PANIC_EXCEPTION_IWDT; in panic_soc_fill_info() 431 info->exception = PANIC_EXCEPTION_DEBUG; in panic_soc_fill_info()
|
/hal_espressif-3.4.0/components/bootloader/subproject/main/ld/esp32/ |
D | bootloader.ld | 17 placed into the same range as exception vectors in the app. 19 message as one of the exception vectors, which looks scary to users. 146 /* C++ exception handlers table: */
|
/hal_espressif-3.4.0/docs/en/api-guides/ |
D | fatal-errors.rst | 54 …This will print register values at the point of the exception, print the backtrace, and restart th… 80 …xample, when writing to SPI flash) or when flash cache is corrupted when an exception is triggered. 162 …ues printed are the register values in the exception frame, i.e., values at the moment when the CP… 236 …te DWARF information for each function of the project. Then, when a CPU exception occurs, the pani… 287 .. Note to editor: titles of the following section need to match exception causes printed by the pa… 299 This CPU exception indicates that the instruction which was executed was not a valid instruction. M… 314 …This CPU exception indicates that the CPU could not read an instruction because the address of the… 336 This exception may happen in the following cases: 342 Unhandled debug exception 347 Debug exception reason: Stack canary watchpoint triggered (task_name) [all …]
|
D | error-handling.rst | 186 …exception handling normally increases application binary size by a few kB. Additionally it may be … 188 If an exception is thrown, but there is no ``catch`` block, the program will be terminated by ``abo… 190 See :example:`cxx/exceptions` for an example of C++ exception handling.
|
D | hlinterrupts.rst | 22 …dbg xt_debugexception Debug exception. Called on e.g. a BREAK instruction. :ref:`(See 2) <hlinte… 43 dbg xt_debugexception Debug exception. Called on e.g. a BREAK instruction. 64 …Note that although the panic handler interrupt does call normal C code, this exception is allowed …
|
/hal_espressif-3.4.0/examples/cxx/experimental/blink_cxx/ |
D | sdkconfig.defaults | 1 # Enable C++ exceptions and set emergency pool size for exception objects
|
/hal_espressif-3.4.0/examples/cxx/experimental/esp_mqtt_cxx/tcp/ |
D | sdkconfig.defaults | 1 # Enable C++ exceptions and set emergency pool size for exception objects
|
/hal_espressif-3.4.0/examples/cxx/experimental/esp_timer_cxx/ |
D | sdkconfig.defaults | 1 # Enable C++ exceptions and set emergency pool size for exception objects
|
/hal_espressif-3.4.0/examples/cxx/experimental/sensor_mcp9808/ |
D | sdkconfig.defaults | 1 # Enable C++ exceptions and set emergency pool size for exception objects
|
/hal_espressif-3.4.0/examples/cxx/experimental/esp_event_async_cxx/ |
D | sdkconfig.defaults | 1 # Enable C++ exceptions and set emergency pool size for exception objects
|
/hal_espressif-3.4.0/examples/cxx/experimental/esp_event_cxx/ |
D | sdkconfig.defaults | 1 # Enable C++ exceptions and set emergency pool size for exception objects
|
/hal_espressif-3.4.0/examples/cxx/experimental/esp_mqtt_cxx/ssl/ |
D | sdkconfig.defaults | 1 # Enable C++ exceptions and set emergency pool size for exception objects
|
/hal_espressif-3.4.0/components/log/host_test/log_test/main/ |
D | log_test.cpp | 57 throw exception(); in PrintFixture() 92 throw exception(); in PutcFixture()
|
/hal_espressif-3.4.0/components/esp_system/ |
D | panic.c | 228 info->exception = PANIC_EXCEPTION_ABORT; in esp_panic_handler() 362 switch (info->exception) { in esp_panic_handler()
|
/hal_espressif-3.4.0/examples/cxx/experimental/experimental_cpp_component/test/ |
D | unity_cxx.hpp | 23 } catch ( std::exception &e) { \
|
/hal_espressif-3.4.0/examples/cxx/experimental/experimental_cpp_component/include/ |
D | esp_exception.hpp | 33 class ESPException : public std::exception {
|
/hal_espressif-3.4.0/examples/cxx/experimental/experimental_cpp_component/host_test/fixtures/ |
D | test_fixtures.hpp | 31 class CMockException : public std::exception {
|
1234