/Zephyr-latest/include/zephyr/drivers/i3c/ |
D | error_types.h | 15 * @brief I3C SDR Controller Error Types 17 * These are error types defined by the I3C specification. 20 * official error types according to the specification. 21 * These are there simply to aid in error handling during 28 /** Monitoring Error */ 37 /** Unknown error (not official error type) */ 40 /** No error (not official error type) */ 48 * @brief I3C SDR Target Error Types 50 * These are error types defined by the I3C specification. 53 * official error types according to the specification. [all …]
|
/Zephyr-latest/tests/subsys/edac/ibecc/src/ |
D | ibecc.c | 62 /* Error log API */ in ZTEST() 79 /* Error stat API */ in ZTEST() 83 "Error correctable count does not match"); in ZTEST() 87 "Error uncorrectable count does mot match"); in ZTEST() 92 zassert_equal(ret, 0, "Error setting notification callback"); in ZTEST() 112 zassert_equal(ret, 0, "Error getting error_type"); in ZTEST() 113 zassert_equal(test_value, 0, "Error type not zero"); in ZTEST() 116 zassert_equal(ret, 0, "Error getting param1"); in ZTEST() 117 zassert_equal(val, 0, "Error param1 is not zero"); in ZTEST() 120 zassert_equal(ret, 0, "Error getting param2"); in ZTEST() [all …]
|
/Zephyr-latest/subsys/debug/coredump/ |
D | coredump_backend_logging.c | 26 static int error; variable 30 /* Reset error */ in coredump_logging_backend_start() 31 error = 0; in coredump_logging_backend_start() 43 if (error != 0) { in coredump_logging_backend_end() 57 error = -EINVAL; in coredump_logging_backend_buffer_output() 63 error = -EINVAL; in coredump_logging_backend_buffer_output() 69 error = -EINVAL; in coredump_logging_backend_buffer_output() 92 ret = error; in coredump_logging_backend_query() 110 error = 0; in coredump_logging_backend_cmd() 139 if (error == 0) { in cmd_coredump_error_get() [all …]
|
/Zephyr-latest/soc/nxp/imxrt/imxrt5xx/f1/include/ |
D | _soc_inthandlers.h | 11 #error core-isa.h interrupt level does not match dispatcher! 14 #error core-isa.h interrupt level does not match dispatcher! 17 #error core-isa.h interrupt level does not match dispatcher! 20 #error core-isa.h interrupt level does not match dispatcher! 23 #error core-isa.h interrupt level does not match dispatcher! 26 #error core-isa.h interrupt level does not match dispatcher! 29 #error core-isa.h interrupt level does not match dispatcher! 32 #error core-isa.h interrupt level does not match dispatcher! 35 #error core-isa.h interrupt level does not match dispatcher! 38 #error core-isa.h interrupt level does not match dispatcher! [all …]
|
/Zephyr-latest/doc/hardware/peripherals/edac/ |
D | ibecc.rst | 3 In Band Error Correction Code (IBECC) 12 The In-Band Error Correction Code (IBECC) improves reliability by providing 13 error detection and correction. IBECC can work for all or for specific regions 22 There is a debug feature IBECC Error Injection which helps to debug and verify 44 Due to high security risk Error Injection capability should not be enabled for 45 production. Error Injection is only enabled for tests. 52 * Error Address 54 * Error Syndrome 56 * Error Type 58 * Correctable Error (CE) - error is detected and corrected by IBECC module. [all …]
|
/Zephyr-latest/soc/nxp/imx/imx8m/adsp/ |
D | _soc_inthandlers.h | 15 * level will invoke an error handler. 23 #error core-isa.h interrupt level does not match dispatcher! 26 #error core-isa.h interrupt level does not match dispatcher! 29 #error core-isa.h interrupt level does not match dispatcher! 32 #error core-isa.h interrupt level does not match dispatcher! 35 #error core-isa.h interrupt level does not match dispatcher! 38 #error core-isa.h interrupt level does not match dispatcher! 41 #error core-isa.h interrupt level does not match dispatcher! 44 #error core-isa.h interrupt level does not match dispatcher! 47 #error core-isa.h interrupt level does not match dispatcher! [all …]
|
/Zephyr-latest/soc/nxp/imx/imx8x/adsp/ |
D | _soc_inthandlers.h | 15 * level will invoke an error handler. 23 #error core-isa.h interrupt level does not match dispatcher! 26 #error core-isa.h interrupt level does not match dispatcher! 29 #error core-isa.h interrupt level does not match dispatcher! 32 #error core-isa.h interrupt level does not match dispatcher! 35 #error core-isa.h interrupt level does not match dispatcher! 38 #error core-isa.h interrupt level does not match dispatcher! 41 #error core-isa.h interrupt level does not match dispatcher! 44 #error core-isa.h interrupt level does not match dispatcher! 47 #error core-isa.h interrupt level does not match dispatcher! [all …]
|
/Zephyr-latest/soc/nxp/imx/imx8/adsp/ |
D | _soc_inthandlers.h | 15 * level will invoke an error handler. 23 #error core-isa.h interrupt level does not match dispatcher! 26 #error core-isa.h interrupt level does not match dispatcher! 29 #error core-isa.h interrupt level does not match dispatcher! 32 #error core-isa.h interrupt level does not match dispatcher! 35 #error core-isa.h interrupt level does not match dispatcher! 38 #error core-isa.h interrupt level does not match dispatcher! 41 #error core-isa.h interrupt level does not match dispatcher! 44 #error core-isa.h interrupt level does not match dispatcher! 47 #error core-isa.h interrupt level does not match dispatcher! [all …]
|
/Zephyr-latest/include/zephyr/drivers/ |
D | edac.h | 28 * @brief EDAC error type 31 /** Correctable error type */ 33 /** Uncorrectable error type */ 51 /* Error Injection API is disabled by default */ 60 /* Error Logging API */ 66 /* Error stats API */ 89 * Set first error injection parameter value. 95 * @retval 0 on success, other error code otherwise 113 * Get first error injection parameter value. 119 * @retval 0 on success, error code otherwise [all …]
|
/Zephyr-latest/tests/ztest/error_hook/ |
D | README.txt | 1 Title: A common fatal error and assert fail handler 6 code writing for fatal and assert handler for error case testing. They can 13 When writing error testing case (or we call it negative test case), we might 16 identical code would be written. So we try to move the error handler definition 20 And when error happens, we sometimes need a special action to make our testing 22 error happened. This is why we add a hook on it, in order to achieve that goal. 28 (a) Usage for dealing with fatal error: 60 This test verifies if the common fatal error and assert fail handler works. 61 If the expected error was caught, the test case will pass. 69 the (expected) fatal error. [all …]
|
/Zephyr-latest/drivers/edac/ |
D | shell.c | 15 * EDAC Error Injection interface 19 * edac inject error_type Show / Set EDAC error type 29 * edac info Show EDAC ECC / Parity error info 44 "CMI Error address: 0x%llx\n", erradd); in decode_ecc_error() 46 "Error Syndrome: 0x%lx\n", errsynd); in decode_ecc_error() 50 "Uncorrectable Error (UE)\n"); in decode_ecc_error() 55 "Correctable Error (CE)\n"); in decode_ecc_error() 61 uint64_t error; in ecc_error_show() local 64 err = edac_ecc_error_log_get(dev, &error); in ecc_error_show() 66 shell_error(sh, "Error getting error log (err %d)", err); in ecc_error_show() [all …]
|
/Zephyr-latest/scripts/logging/dictionary/ |
D | parserlib.py | 31 logger.error("ERROR: Cannot open database file: exiting...") 35 logger.error("ERROR: cannot read log from file: exiting...") 49 logger.error("ERROR: there were error(s) parsing log data") 52 logger.error("ERROR: Cannot find a suitable parser matching database version!")
|
/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v2/src/ |
D | timer.c | 49 zassert_true(id1 != NULL, "error creating one-shot timer"); in ZTEST() 52 zassert_str_equal(timer_attr.name, name, "Error getting Timer name"); in ZTEST() 56 zassert_true(status == osErrorResource, "error while stopping non-active timer"); in ZTEST() 60 zassert_true(status == osOK, "error starting one-shot timer"); in ZTEST() 62 zassert_equal(osTimerIsRunning(id1), 1, "Error: Timer not running"); in ZTEST() 69 zassert_true(num_oneshots_executed == 1U, "error setting up one-shot timer"); in ZTEST() 72 zassert_true(status == osOK, "error stopping one-shot timer"); in ZTEST() 75 zassert_true(status == osOK, "error deleting one-shot timer"); in ZTEST() 80 zassert_true(id2 != NULL, "error creating periodic timer"); in ZTEST() 82 zassert_equal(osTimerIsRunning(id2), 0, "Error: Timer is running"); in ZTEST() [all …]
|
/Zephyr-latest/include/zephyr/ |
D | fatal.h | 8 * @brief Fatal error functions 24 * @defgroup fatal_apis Fatal error APIs 30 * @brief Halt the system on a fatal error 40 * @brief Fatal error policy handler 54 * - If the error is determined to be unrecoverable, LOG_PANIC() should be 56 * - K_ERR_KERNEL_PANIC indicates a severe unrecoverable error in the kernel 64 * @param reason The reason for the fatal error 66 * state when the error occurred. May in some cases be NULL. 71 * @brief Called by architecture code upon a fatal error. 73 * This function dumps out architecture-agnostic information about the error [all …]
|
/Zephyr-latest/soc/espressif/common/include/ |
D | _soc_inthandlers.h | 16 * level will invoke an error handler. 24 #error core-isa.h interrupt level does not match dispatcher! 27 #error core-isa.h interrupt level does not match dispatcher! 30 #error core-isa.h interrupt level does not match dispatcher! 33 #error core-isa.h interrupt level does not match dispatcher! 36 #error core-isa.h interrupt level does not match dispatcher! 39 #error core-isa.h interrupt level does not match dispatcher! 42 #error core-isa.h interrupt level does not match dispatcher! 45 #error core-isa.h interrupt level does not match dispatcher! 48 #error core-isa.h interrupt level does not match dispatcher! [all …]
|
/Zephyr-latest/soc/nxp/imx/imx8ulp/adsp/ |
D | _soc_inthandlers.h | 15 * level will invoke an error handler. 23 #error core-isa.h interrupt level does not match dispatcher! 26 #error core-isa.h interrupt level does not match dispatcher! 29 #error core-isa.h interrupt level does not match dispatcher! 32 #error core-isa.h interrupt level does not match dispatcher! 35 #error core-isa.h interrupt level does not match dispatcher! 38 #error core-isa.h interrupt level does not match dispatcher! 41 #error core-isa.h interrupt level does not match dispatcher! 44 #error core-isa.h interrupt level does not match dispatcher! 47 #error core-isa.h interrupt level does not match dispatcher! [all …]
|
/Zephyr-latest/modules/hostap/src/ |
D | supp_api.h | 29 * @return: 0 for OK; <0 for ERROR 39 * @return: 0 for OK; -1 for ERROR 49 * @return: 0 for OK; -1 for ERROR 59 * @return: 0 for OK; -1 for ERROR 70 * @return 0 for OK; -1 for ERROR 82 * @return 0 for OK; -1 for ERROR 90 * @return 0 for OK; -1 for ERROR 99 * @return 0 if ok, < 0 if error 108 * @return 0 if ok, < 0 if error 117 * @return 0 if ok, < 0 if error [all …]
|
/Zephyr-latest/tests/boards/native_sim/rtc/src/ |
D | main.c | 55 int64_t diff, error; in ZTEST() local 93 error = diff / 1000 - WAIT_TIME / acc_ratio; in ZTEST() 103 zassert_true(llabs(error) < TOLERANCE, in ZTEST() 104 "Real time error over TOLERANCE"); in ZTEST() 112 error = diff - WAIT_TIME * 1000; in ZTEST() 115 "(error %.3fms)\n", in ZTEST() 118 error / 1000.0); in ZTEST() 120 error /= 1000; in ZTEST() 121 zassert_true(llabs(error) < TOLERANCE, in ZTEST() 122 "PSEUDOHOSTREALTIME time error over TOLERANCE"); in ZTEST() [all …]
|
/Zephyr-latest/modules/cmsis/ |
D | cmsis_core_m.h | 27 #error "NUM_IRQ_PRIO_BITS and __NVIC_PRIO_BITS are not set to the same value" 31 #error "__MPU_PRESENT and CONFIG_CPU_HAS_ARM_MPU are not set to the same value" 35 #error "__FPU_PRESENT and CONFIG_CPU_HAS_FPU are not set to the same value" 44 #error "__VTOR_PRESENT and CONFIG_CPU_CORTEX_M_HAS_VTOR are not set to the same value." 52 #error "__DSP_PRESENT and CONFIG_ARMV8_M_DSP are not set to the same value" 56 #error "__ICACHE_PRESENT and CONFIG_CPU_HAS_ICACHE are not set to the same value" 60 #error "__DCACHE_PRESENT and CONFIG_CPU_HAS_DCACHE are not set to the same value" 64 #error "__MVE_PRESENT and CONFIG_ARMV8_1_M_MVEI are not set to the same value" 68 #error "__SAUREGION_PRESENT and CONFIG_CPU_HAS_ARM_SAU are not set to the same value"
|
/Zephyr-latest/tests/bluetooth/host/id/bt_id_set_adv_own_addr/src/ |
D | test_suite_invalid_inputs.c | 65 * - 'ENOTSUP' error is returned 81 zassert_true(err == -ENOTSUP, "Unexpected error code '%d' was returned", err); in ZTEST() 87 * Operation fails if bt_id_set_adv_private_addr() failed and a negative error code is returned. 93 * - bt_id_set_adv_private_addr() fails and returns a negative error code (failure) 96 * - bt_id_set_adv_own_addr() returns a negative error code (failure) 111 zassert_true(err < 0, "Unexpected error code '%d' was returned", err); in ZTEST() 119 * Operation fails if bt_id_set_adv_random_addr() failed and a negative error code is returned. 124 * - bt_id_set_adv_random_addr() fails and returns a negative error code (failure) 127 * - bt_id_set_adv_own_addr() returns a negative error code (failure) 147 zassert_true(err < 0, "Unexpected error code '%d' was returned", err); in ZTEST() [all …]
|
/Zephyr-latest/tests/drivers/eeprom/api/src/ |
D | main.c | 33 zassert_equal(-EINVAL, rc, "Unexpected error code (%d)", rc); in ZTEST_USER() 51 zassert_equal(0, rc, "Unexpected error code (%d)", rc); in ZTEST_USER() 54 zassert_equal(0, rc, "Unexpected error code (%d)", rc); in ZTEST_USER() 57 zassert_equal(0, rc, "Unexpected error code (%d)", rc); in ZTEST_USER() 65 zassert_equal(0, rc, "Unexpected error code (%d)", rc); in ZTEST_USER() 68 zassert_equal(0, rc, "Unexpected error code (%d)", rc); in ZTEST_USER() 71 zassert_equal(0, rc, "Unexpected error code (%d)", rc); in ZTEST_USER() 90 zassert_equal(0, rc, "Unexpected error code (%d)", rc); in ZTEST_USER() 93 zassert_equal(0, rc, "Unexpected error code (%d)", rc); in ZTEST_USER() 96 zassert_equal(0, rc, "Unexpected error code (%d)", rc); in ZTEST_USER() [all …]
|
/Zephyr-latest/tests/bluetooth/host/id/bt_id_set_scan_own_addr/src/ |
D | test_suite_invalid_inputs.c | 41 * and it returns an error. 46 * - bt_id_set_private_addr() fails and returns a negative error 49 * - bt_id_set_scan_own_addr() fails and returns the same error code returned by 64 zassert_true(err < 0, "Unexpected error code '%d' was returned", err); in ZTEST() 70 * 'BT_ADDR_LE_RANDOM', set_random_address() is called, but execution fails and a negative error 77 * - set_random_address() fails and returns a negative error 80 * - bt_id_set_scan_own_addr() fails and returns the same error code returned by 98 zassert_true(err == -ENOBUFS, "Unexpected error code '%d' was returned", err); in ZTEST() 104 * a negative error code. 108 * - bt_id_set_private_addr() fails and returns a negative error [all …]
|
/Zephyr-latest/tests/lib/c_lib/stdio/src/ |
D | main.c | 40 zassert_ok(fs_mount(&fatfs_mnt), "Error in mount file system\n"); in ZTEST() 42 "Error creating file\n"); in ZTEST() 43 zassert_ok(fs_close(&file), "Error closing file\n"); in ZTEST() 44 zassert_ok(remove(TEST_FILE), "Error removing file: %d\n", errno); in ZTEST() 45 zassert_equal(remove(""), -1, "Error Invalid path removed\n"); in ZTEST() 46 zassert_equal(remove(NULL), -1, "Error Invalid path removed\n"); in ZTEST() 47 zassert_ok(fs_unmount(&fatfs_mnt), "Error while unmount file system\n"); in ZTEST()
|
/Zephyr-latest/drivers/adc/ |
D | adc_ambiq.c | 155 int error = 0; in adc_ambiq_start_read() local 167 error = adc_ambiq_check_buffer_size(sequence, active_channels); in adc_ambiq_start_read() 168 if (error < 0) { in adc_ambiq_start_read() 169 return error; in adc_ambiq_start_read() 181 error = adc_ambiq_slot_config(dev, sequence, channel_id, slot_index); in adc_ambiq_start_read() 182 if (error < 0) { in adc_ambiq_start_read() 183 return error; in adc_ambiq_start_read() 193 error = adc_context_wait_for_completion(&data->ctx); in adc_ambiq_start_read() 195 return error; in adc_ambiq_start_read() 201 int error = 0; in adc_ambiq_read() local [all …]
|
/Zephyr-latest/subsys/lorawan/ |
D | lw_priv.c | 23 [LORAMAC_STATUS_LENGTH_ERROR] = "Length error", 34 [LORAMAC_STATUS_CRYPTO_ERROR] = "Crypto error", 35 [LORAMAC_STATUS_FCNT_HANDLER_ERROR] = "FCnt handler error", 36 [LORAMAC_STATUS_MAC_COMMAD_ERROR] = "MAC command error", 37 [LORAMAC_STATUS_CLASS_B_ERROR] = "ClassB error", 38 [LORAMAC_STATUS_CONFIRM_QUEUE_ERROR] = "Confirm queue error", 40 [LORAMAC_STATUS_ERROR] = "Unknown error", 54 [LORAMAC_EVENT_INFO_STATUS_ERROR] = "Error", 58 [LORAMAC_EVENT_INFO_STATUS_RX1_ERROR] = "Rx1 error", 59 [LORAMAC_EVENT_INFO_STATUS_RX2_ERROR] = "Rx2 error", [all …]
|