Lines Matching +refs:if +refs:protected
20 - CPU exceptions: access to protected regions of memory, illegal instruction, etc.
42 …https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/errno.h.html>`_, if no matching ``ESP_ER…
83 :cpp:func:`ESP_RETURN_ON_ERROR` macro checks the error code, if the error code is not equal :c:macr…
90 :cpp:func:`ESP_GOTO_ON_ERROR` macro checks the error code, if the error code is not equal :c:macro:…
97 :cpp:func:`ESP_RETURN_ON_FALSE` macro checks the condition, if the condition is not equal `true`, i…
104 :cpp:func:`ESP_GOTO_ON_FALSE` macro checks the condition, if the condition is not equal `true`, it …
119 …ESP_ERROR_CHECK(x); // err message printed if `x` is not `…
120 …ESP_ERROR_CHECK_WITHOUT_ABORT(x); // err message printed if `x` is not `…
121 …ESP_RETURN_ON_ERROR(x, TAG, "fail reason 1"); // err message printed if `x` is not `…
122 …ESP_GOTO_ON_ERROR(x, err, TAG, "fail reason 2"); // err message printed if `x` is not `…
123 …ESP_RETURN_ON_FALSE(a, err_code, TAG, "fail reason 3"); // err message printed if `a` is not `…
124 …ESP_GOTO_ON_FALSE(a, err_code, err, TAG, "fail reason 4"); // err message printed if `a` is not `…
149 if (err != ESP_OK) {
158 if (card == NULL) {
162 if (err != ESP_OK) {
186 …nt of RAM for exception emergency pool. Memory from this pool will be used if it is not possible t…