Home
last modified time | relevance | path

Searched refs:error (Results 101 – 125 of 1189) sorted by relevance

12345678910>>...48

/Zephyr-latest/tests/cmake/overlays/soc_folder_kconfig/src/
Dmain.c12 #error "Invalid test configuration"
16 #error "Invalid test configuration"
136 #error "Invalid test type"
/Zephyr-latest/drivers/wifi/eswifi/
Deswifi_core.c274 goto error; in eswifi_connect()
282 goto error; in eswifi_connect()
291 goto error; in eswifi_connect()
298 goto error; in eswifi_connect()
306 goto error; in eswifi_connect()
321 error: in eswifi_connect()
641 goto error; in eswifi_mgmt_ap_enable()
646 goto error; in eswifi_mgmt_ap_enable()
655 goto error; in eswifi_mgmt_ap_enable()
665 goto error; in eswifi_mgmt_ap_enable()
[all …]
/Zephyr-latest/soc/nordic/common/
Dnrf_sys_event.c35 #error "unsupported" in nrf_sys_event_request_global_constlat()
58 #error "unsupported" in nrf_sys_event_release_global_constlat()
/Zephyr-latest/drivers/flash/
Dflash_stm32wbx.c411 uint32_t error = 0; in flash_stm32_check_status() local
414 error = (regs->SR & FLASH_FLAG_SR_ERRORS); in flash_stm32_check_status()
415 error |= (regs->ECCR & FLASH_FLAG_ECCC); in flash_stm32_check_status()
418 if (error & FLASH_FLAG_OPTVERR) { in flash_stm32_check_status()
423 if (error) { in flash_stm32_check_status()
/Zephyr-latest/drivers/i2c/
Di2c_gecko.c160 int error; in i2c_gecko_init() local
169 error = pinctrl_apply_state(config->pcfg, PINCTRL_STATE_DEFAULT); in i2c_gecko_init()
170 if (error < 0) { in i2c_gecko_init()
171 LOG_ERR("Failed to configure I2C pins err[%d]", error); in i2c_gecko_init()
172 return error; in i2c_gecko_init()
177 error = i2c_gecko_configure(dev, I2C_MODE_CONTROLLER | bitrate_cfg); in i2c_gecko_init()
178 if (error) { in i2c_gecko_init()
179 return error; in i2c_gecko_init()
/Zephyr-latest/subsys/net/lib/lwm2m/
Dlwm2m_obj_firmware.c100 bool error = false; in lwm2m_firmware_set_update_state_inst() local
111 error = true; in lwm2m_firmware_set_update_state_inst()
120 error = true; in lwm2m_firmware_set_update_state_inst()
125 error = true; in lwm2m_firmware_set_update_state_inst()
136 if (error) { in lwm2m_firmware_set_update_state_inst()
167 bool error = false; in lwm2m_firmware_set_update_result_inst() local
179 error = true; in lwm2m_firmware_set_update_result_inst()
192 error = true; in lwm2m_firmware_set_update_result_inst()
201 error = true; in lwm2m_firmware_set_update_result_inst()
210 error = true; in lwm2m_firmware_set_update_result_inst()
[all …]
/Zephyr-latest/scripts/build/
Dgen_isr_tables_parser_local.py113 self.__log.error("Cannot find sname null termination at IRQ{}".format(entry_raw[0]))
126 self.__log.error("Non-zero data found at the end of the intList data.\n")
172 self.__log.error("one or both of -s or -V needs to be specified on command line")
186 self.__log.error("IRQ %d (offset=%d) exceeds the maximum of %d" %
192 self.__log.error("Regular Interrupt %d declared with section name %s "
199 self.__log.error("IRQ %d (offset=%d) exceeds the maximum of %d" %
206 self.__log.error(("Attempting to register the same section name \"{}\"for" +
211 self.__log.error(f"Reached shared interrupt client limit. Maybe increase"
215 … self.__log.error(f"multiple registrations at table_index {table_index} for irq {irq} (0x{irq:x})"
339 self.__log.error("Invalid __shared_isr_client_num_offset header value")
/Zephyr-latest/drivers/spi/
Dspi_nrfx_spis.c178 int error; in transceive() local
184 error = configure(dev, spi_cfg); in transceive()
185 if (error != 0) { in transceive()
190 error = -ENOTSUP; in transceive()
193 error = -ENOTSUP; in transceive()
201 error = prepare_for_transfer(dev, in transceive()
206 if (error == 0) { in transceive()
224 error = spi_context_wait_for_completion(&dev_data->ctx); in transceive()
232 spi_context_release(&dev_data->ctx, error); in transceive()
234 return error; in transceive()
/Zephyr-latest/dts/arm/nxp/
Dnxp_s32k146.dtsi67 interrupt-names = "warning", "error", "wake-up", "mb-0-15", "mb-16-31";
72 interrupt-names = "warning", "error", "mb-0-15", "mb-16-31";
78 interrupt-names = "warning", "error", "mb-0-15";
/Zephyr-latest/soc/atmel/sam0/saml21/
Dsoc.h40 #error Library does not support the specified device.
71 #error Unsupported GCLK1 clock source.
/Zephyr-latest/drivers/modem/
Dsimcom-sim7080.c189 goto error; in offload_connect()
196 goto error; in offload_connect()
202 error: in offload_connect()
942 int error = atoi(argv[0]); in MODEM_CMD_DEFINE() local
944 LOG_INF("+FTPGET: 1,%d", error); in MODEM_CMD_DEFINE()
947 if (error == 0) { in MODEM_CMD_DEFINE()
949 } else if (error == 1) { in MODEM_CMD_DEFINE()
1209 goto error; in modem_pdp_activate()
1217 goto error; in modem_pdp_activate()
1227 goto error; in modem_pdp_activate()
[all …]
/Zephyr-latest/drivers/edac/
Dshell.c61 uint64_t error; in ecc_error_show() local
64 err = edac_ecc_error_log_get(dev, &error); in ecc_error_show()
70 shell_fprintf(sh, SHELL_NORMAL, "ECC Error: 0x%llx\n", error); in ecc_error_show()
72 if (error != 0) { in ecc_error_show()
73 decode_ecc_error(sh, error); in ecc_error_show()
81 uint64_t error; in parity_error_show() local
84 err = edac_parity_error_log_get(dev, &error); in parity_error_show()
90 shell_fprintf(sh, SHELL_NORMAL, "Parity Error: 0x%llx\n", error); in parity_error_show()
/Zephyr-latest/subsys/net/lib/zperf/
Dzperf_tcp_receiver.c146 goto error; in tcp_recv_data()
168 goto error; in tcp_recv_data()
228 error: in tcp_recv_data()
296 goto error; in zperf_tcp_receiver_init()
329 goto error; in zperf_tcp_receiver_init()
342 goto error; in zperf_tcp_receiver_init()
377 goto error; in zperf_tcp_receiver_init()
389 error: in zperf_tcp_receiver_init()
Dzperf_udp_receiver.c169 session->stat.error_cnt = session->error; in udp_received()
181 results.nb_packets_lost = session->error; in udp_received()
221 session->error += id - session->next_id; in udp_received()
337 goto error; in udp_recv_data()
352 goto error; in udp_recv_data()
359 error: in udp_recv_data()
398 goto error; in zperf_udp_receiver_init()
436 goto error; in zperf_udp_receiver_init()
452 goto error; in zperf_udp_receiver_init()
493 goto error; in zperf_udp_receiver_init()
[all …]
/Zephyr-latest/arch/riscv/core/
Duserspace.S29 sw a5, 0(a2) # Init error value to 0
49 li a4, -1 # Put error to -1
/Zephyr-latest/modules/openthread/platform/
Dradio_spinel.cpp280 otError error; in otPlatRadioGetTransmitPower() local
283 VerifyOrExit(aPower != NULL, error = OT_ERROR_INVALID_ARGS); in otPlatRadioGetTransmitPower()
284 error = psRadioSpinel->GetTransmitPower(*aPower); in otPlatRadioGetTransmitPower()
287 return error; in otPlatRadioGetTransmitPower()
298 otError error; in otPlatRadioGetCcaEnergyDetectThreshold() local
301 VerifyOrExit(aThreshold != NULL, error = OT_ERROR_INVALID_ARGS); in otPlatRadioGetCcaEnergyDetectThreshold()
302 error = psRadioSpinel->GetCcaEnergyDetectThreshold(*aThreshold); in otPlatRadioGetCcaEnergyDetectThreshold()
305 return error; in otPlatRadioGetCcaEnergyDetectThreshold()
337 otError error = OT_ERROR_NONE; in otPlatRadioGetCoexMetrics() local
339 VerifyOrExit(aCoexMetrics != NULL, error = OT_ERROR_INVALID_ARGS); in otPlatRadioGetCoexMetrics()
[all …]
/Zephyr-latest/scripts/logging/dictionary/
Dlog_parser.py65 logger.error("ERROR: Cannot find start of log data, exiting...")
95 logger.error("ERROR: Cannot open binary log data file: %s, exiting...", args.logfile)
117 logger.error("ERROR: cannot read log from file: %s, exiting...", args.logfile)
/Zephyr-latest/tests/kernel/fpu_sharing/generic/src/
Dload_store.c113 bool error = false; in load_store_low() local
185 error = true; in load_store_low()
191 zassert_false(error); in load_store_low()
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dcoverage.py46 logger.error(f"Unsupported coverage tool specified: {tool}")
150 logger.error(f"Gcov data invalid for: {filename}")
153 logger.error(f"Gcov data capture incomplete: {filename}")
220 logger.error(f"Unable to determine lcov version: {e}")
223 logger.error(f"Unable to find lcov tool: {e}")
306 logger.error("LCOV capture report stage failed with %s", ret)
315 logger.error("LCOV extract report stage failed with %s", ret)
325 logger.error("LCOV remove ztest report stage failed with %s", ret)
336 logger.error("LCOV remove ignores report stage failed with %s", ret)
350 logger.error("LCOV genhtml report stage failed with %s", ret)
[all …]
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/
Dbinary_adapter.py44 logger.error(msg)
51 logger.error(msg)
55 logger.error(msg)
59 logger.error(msg)
/Zephyr-latest/drivers/adc/
Dadc_mcux_12b1msps_sar.c85 int error; in mcux_12b1msps_sar_adc_start_read() local
132 error = adc_context_wait_for_completion(&data->ctx); in mcux_12b1msps_sar_adc_start_read()
134 return error; in mcux_12b1msps_sar_adc_start_read()
142 int error; in mcux_12b1msps_sar_adc_read_async() local
145 error = mcux_12b1msps_sar_adc_start_read(dev, sequence); in mcux_12b1msps_sar_adc_read_async()
146 adc_context_release(&data->ctx, error); in mcux_12b1msps_sar_adc_read_async()
148 return error; in mcux_12b1msps_sar_adc_read_async()
Dadc_mcux_adc16.c141 int error; in start_read() local
212 error = adc_context_wait_for_completion(&data->ctx); in start_read()
216 return error; in start_read()
223 int error; in mcux_adc16_read() local
226 error = start_read(dev, sequence); in mcux_adc16_read()
227 adc_context_release(&data->ctx, error); in mcux_adc16_read()
229 return error; in mcux_adc16_read()
238 int error; in mcux_adc16_read_async() local
241 error = start_read(dev, sequence); in mcux_adc16_read_async()
242 adc_context_release(&data->ctx, error); in mcux_adc16_read_async()
[all …]
/Zephyr-latest/tests/kernel/context/src/
Dmain.c86 int error; /* error value (if any) */ member
124 isr_info.error = INVALID_BEHAVIOUR; in isr_handler()
148 isr_info.error = UNKNOWN_COMMAND; in isr_handler()
624 isr_info.error = 0; in ZTEST()
628 zassert_false(isr_info.error, "ISR detected an error"); in ZTEST()
635 isr_info.error = 0; in ZTEST()
638 zassert_false(isr_info.error, "ISR detected an error"); in ZTEST()
669 isr_info.error = 0; in _test_kernel_thread()
675 zassert_false((isr_info.error || (isr_info.data != (void *)self_thread_id)), in _test_kernel_thread()
679 isr_info.error = 0; in _test_kernel_thread()
[all …]
/Zephyr-latest/doc/services/device_mgmt/smp_groups/
Dsmp_group_1.rst130 In case of error the CBOR data takes the form:
199 | "err" -> "group" | :c:enum:`mcumgr_group_t` group of the group-based error code. Only |
200 | | appears if an error is returned when using SMP version 2. |
202 | "err" -> "rc" | contains the index of the group-based error code. Only appears if |
203 | | non-zero (error condition) when using SMP version 2. |
205 | "rc" | :c:enum:`mcumgr_err_t` only appears if non-zero (error condition) when |
208 | "rsn" | optional string that clarifies reason for an error; specifically useful |
366 In case of error the CBOR data takes the form:
402 | "err" -> "group" | :c:enum:`mcumgr_group_t` group of the group-based error code. Only |
403 | | appears if an error is returned when using SMP version 2. |
[all …]
/Zephyr-latest/doc/kernel/services/other/
Dfatal.rst9 Zephyr provides several methods for inducing fatal error conditions through
49 perform optional runtime checks which will induce a fatal error if the
61 If at runtime ``foo`` had some unexpected value, the error produced may
130 ``static_assert``. If the evaluation fails, a build error will be generated by
148 include/toolchain/gcc.h:28:37: error: static assertion failed: "Invalid value of FOO"
158 A kernel oops is a software triggered fatal error invoked by
162 The fatal error reason code generated will be ``K_ERR_KERNEL_OOPS``.
167 A kernel error is a software triggered fatal error invoked by
174 and doing so will generate a kernel oops instead. Otherwise, the fatal error
185 then the kernel will generate a fatal error with the reason code
[all …]

12345678910>>...48