Lines Matching refs:macro
19 …- Failed assertions (using ``assert`` macro and equivalent methods, see :ref:`assertions`) and ``a…
46 .. _esp-error-check-macro:
48 ``ESP_ERROR_CHECK`` macro
51 …macro serves similar purpose as ``assert``, except that it checks :cpp:type:`esp_err_t` value rath…
67 … program where :cpp:func:`ESP_ERROR_CHECK` macro was called, and the expression which was passed t…
71 .. _esp-error-check-without-abort-macro: argument
73 ``ESP_ERROR_CHECK_WITHOUT_ABORT`` macro
76 :cpp:func:`ESP_ERROR_CHECK_WITHOUT_ABORT` macro serves similar purpose as ``ESP_ERROR_CHECK``, exce…
78 .. _esp-return-on-error-macro: argument
80 ``ESP_RETURN_ON_ERROR`` macro
83 :cpp:func:`ESP_RETURN_ON_ERROR` macro checks the error code, if the error code is not equal :c:macr…
85 .. _esp-goto-on-error-macro: argument
87 ``ESP_GOTO_ON_ERROR`` macro
90 :cpp:func:`ESP_GOTO_ON_ERROR` macro checks the error code, if the error code is not equal :c:macro:…
92 .. _esp-return-on-false-macro: argument
94 ``ESP_RETURN_ON_FALSE`` macro
97 :cpp:func:`ESP_RETURN_ON_FALSE` macro checks the condition, if the condition is not equal `true`, i…
99 .. _esp-goto-on-false-macro: argument
101 ``ESP_GOTO_ON_FALSE`` macro
104 :cpp:func:`ESP_GOTO_ON_FALSE` macro checks the condition, if the condition is not equal `true`, it …
170 …erable error, for example using ``ESP_ERROR_CHECK``. See `ESP_ERROR_CHECK macro`_ section for deta…