Home
last modified time | relevance | path

Searched refs:error (Results 26 – 50 of 1189) sorted by relevance

12345678910>>...48

/Zephyr-latest/drivers/adc/
Dadc_nrfx_adc.c155 int error; in start_read() local
212 error = check_buffer_size(sequence, active_channels); in start_read()
213 if (error) { in start_read()
214 return error; in start_read()
222 error = adc_context_wait_for_completion(&m_data.ctx); in start_read()
223 return error; in start_read()
230 int error; in adc_nrfx_read() local
233 error = start_read(dev, sequence); in adc_nrfx_read()
234 adc_context_release(&m_data.ctx, error); in adc_nrfx_read()
236 return error; in adc_nrfx_read()
[all …]
Dadc_ene_kb1200.c73 int error = 0; in adc_kb1200_start_read() local
114 error = -EBUSY; in adc_kb1200_start_read()
123 error = -EINVAL; in adc_kb1200_start_read()
134 return error; in adc_kb1200_start_read()
172 int error; in adc_kb1200_read() local
175 error = adc_kb1200_start_read(dev, sequence); in adc_kb1200_read()
176 adc_context_release(&data->ctx, error); in adc_kb1200_read()
178 return error; in adc_kb1200_read()
186 int error; in adc_kb1200_read_async() local
189 error = adc_kb1200_start_read(dev, sequence); in adc_kb1200_read_async()
[all …]
Dadc_sam_afec.c192 int error = 0; in start_read() local
231 error = check_buffer_size(sequence, num_active_channels); in start_read()
232 if (error) { in start_read()
233 return error; in start_read()
249 error = adc_context_wait_for_completion(&data->ctx); in start_read()
250 return error; in start_read()
257 int error; in adc_sam_read() local
260 error = start_read(dev, sequence); in adc_sam_read()
261 adc_context_release(&data->ctx, error); in adc_sam_read()
263 return error; in adc_sam_read()
[all …]
Dadc_smartbond_gpadc.c197 int error; in start_read() local
217 error = check_buffer_size(sequence, 1); in start_read()
218 if (error) { in start_read()
219 return error; in start_read()
229 error = adc_context_wait_for_completion(&data->ctx); in start_read()
230 return error; in start_read()
259 int error; in adc_smartbond_read() local
264 error = start_read(dev, sequence); in adc_smartbond_read()
265 adc_context_release(&data->ctx, error); in adc_smartbond_read()
267 return error; in adc_smartbond_read()
[all …]
Dadc_smartbond_sdadc.c203 int error; in start_read() local
223 error = check_buffer_size(sequence, 1); in start_read()
224 if (error) { in start_read()
225 return error; in start_read()
235 error = adc_context_wait_for_completion(&data->ctx); in start_read()
236 return error; in start_read()
265 int error; in sdadc_smartbond_read() local
270 error = start_read(dev, sequence); in sdadc_smartbond_read()
271 adc_context_release(&data->ctx, error); in sdadc_smartbond_read()
273 return error; in sdadc_smartbond_read()
[all …]
/Zephyr-latest/tests/ztest/error_hook/
DREADME.txt1 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/subsys/usb/host/
Dusbh_device.c222 goto error; in usbh_device_interface_set()
230 goto error; in usbh_device_interface_set()
237 goto error; in usbh_device_interface_set()
244 goto error; in usbh_device_interface_set()
251 goto error; in usbh_device_interface_set()
256 error: in usbh_device_interface_set()
347 goto error; in usbh_device_set_configuration()
357 goto error; in usbh_device_set_configuration()
365 goto error; in usbh_device_set_configuration()
371 goto error; in usbh_device_set_configuration()
[all …]
/Zephyr-latest/include/zephyr/
Dtoolchain.h54 #error "Invalid/unknown toolchain configuration"
339 #error "At least one byte _ORDER_ macro is not defined"
346 # error "Kconfig/toolchain endianness mismatch:"
349 # error "Unknown __BYTE_ORDER__ value"
352 # error "CONFIG_BIG_ENDIAN but __ORDER_LITTLE_ENDIAN__"
355 # error "CONFIG_LITTLE_ENDIAN but __ORDER_BIG_ENDIAN__"
/Zephyr-latest/modules/openthread/platform/
Dhdlc_interface.cpp70 otError error = OT_ERROR_NONE; in Init() local
94 error = OT_ERROR_FAILED; in Init()
98 return error; in Init()
125 otError error = OT_ERROR_NONE; in SendFrame() local
129 error = OT_ERROR_FAILED; in SendFrame()
135 SuccessOrExit(error = mHdlcEncoder.BeginFrame()); in SendFrame()
136 SuccessOrExit(error = mHdlcEncoder.Encode(aFrame, aLength)); in SendFrame()
137 SuccessOrExit(error = mHdlcEncoder.EndFrame()); in SendFrame()
139 SuccessOrExit(error = Write(mEncoderBuffer.GetFrame(), mEncoderBuffer.GetLength())); in SendFrame()
145 if (error != OT_ERROR_NONE) { in SendFrame()
[all …]
/Zephyr-latest/subsys/mgmt/updatehub/
Dupdatehub.c212 goto error; in start_coap_client()
221 goto error; in start_coap_client()
226 goto error; in start_coap_client()
232 goto error; in start_coap_client()
238 error: in start_coap_client()
257 goto error; in send_request()
266 goto error; in send_request()
282 goto error; in send_request()
289 goto error; in send_request()
296 goto error; in send_request()
[all …]
/Zephyr-latest/tests/kernel/mem_protect/protection/
DREADME.rst45 Imprecise data bus error
46 Caught system error -- reason 0
54 Imprecise data bus error
55 Caught system error -- reason 0
63 Imprecise data bus error
64 Caught system error -- reason 0
72 Imprecise data bus error
73 Caught system error -- reason 0
81 Imprecise data bus error
82 Caught system error -- reason 0
/Zephyr-latest/include/zephyr/dfu/
Dmcuboot.h39 #error "definition incompatible"
48 #error "definition incompatible"
57 #error "definition incompatible"
66 #error "definition incompatible"
75 #error "definition incompatible"
/Zephyr-latest/doc/services/device_mgmt/smp_groups/
Dsmp_group_3.rst91 In case of error the CBOR data takes the form:
128 | "err" -> "group" | :c:enum:`mcumgr_group_t` group of the group-based error code. Only |
129 | | appears if an error is returned when using SMP version 2. |
131 | "err" -> "rc" | contains the index of the group-based error code. Only appears if |
132 | | non-zero (error condition) when using SMP version 2. |
134 | "rc" | :c:enum:`mcumgr_err_t` only appears if non-zero (error condition) when |
186 The command sends an empty CBOR map as data if successful. In case of error the CBOR data takes
216 | "err" -> "group" | :c:enum:`mcumgr_group_t` group of the group-based error code. Only |
217 | | appears if an error is returned when using SMP version 2. |
219 | "err" -> "rc" | contains the index of the group-based error code. Only appears if |
[all …]
Dsmp_group_0.rst94 In case of error the CBOR data takes the form:
125 | "err" -> "group" | :c:enum:`mcumgr_group_t` group of the group-based error code. Only |
126 | | appears if an error is returned when using SMP version 2. |
128 | "err" -> "rc" | contains the index of the group-based error code. Only appears if |
129 | | non-zero (error condition) when using SMP version 2. |
131 | "rc" | :c:enum:`mcumgr_err_t` only appears if non-zero (error condition) when |
192 In case of error the CBOR data takes the form:
241 | "err" -> "group" | :c:enum:`mcumgr_group_t` group of the group-based error code. Only |
242 | | appears if an error is returned when using SMP version 2. |
244 | "err" -> "rc" | contains the index of the group-based error code. Only appears if |
[all …]
/Zephyr-latest/scripts/logging/dictionary/
Dparserlib.py31 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/debug/coredump_backends/src/
Dcoredump_backend_empty.c10 static int error; variable
16 error = 0; in coredump_empty_backend_start()
37 ret = error; in coredump_empty_backend_query()
63 error = 0; in coredump_empty_backend_cmd()
/Zephyr-latest/scripts/release/
Dlist_backports.py85 logging.error(
89 logging.error(
94 logging.error(
102 logging.error(
174 logging.error(f'{i} is not a valid pull request')
178 logging.error(
245 logging.error(
252 logging.error(
295 logging.error('failed to authenticate with GitHub')
301 logging.error('failed to obtain Github repository')
[all …]
/Zephyr-latest/soc/litex/litex_vexriscv/
Dsoc.h21 #error CSR data width less than 8 in litex_read8()
33 #error Unsupported CSR data width in litex_read16()
47 #error Unsupported CSR data width in litex_read32()
67 #error Unsupported CSR data width in litex_read64()
76 #error CSR data width less than 8 in litex_write8()
88 #error Unsupported CSR data width in litex_write16()
102 #error Unsupported CSR data width in litex_write32()
123 #error Unsupported CSR data width in litex_write64()
/Zephyr-latest/subsys/debug/coredump/
Dcoredump_backend_flash_partition.c38 #error "Need a fixed partition named 'coredump-partition'!"
76 int error; member
106 int error; member
268 if (hdr.error != 0) { in process_stored_dump()
326 if (hdr.error != 0) { in get_stored_dump()
445 backend_ctx.error = ret; in coredump_flash_backend_start()
471 backend_ctx.error = stream_flash_buffered_write( in coredump_flash_backend_end()
478 hdr.error = backend_ctx.error; in coredump_flash_backend_end()
484 backend_ctx.error = ret; in coredump_flash_backend_end()
487 if (backend_ctx.error != 0) { in coredump_flash_backend_end()
[all …]
/Zephyr-latest/include/zephyr/arch/arc/
Darch.h47 #error "Unsupported configuration: ARC_FIRQ and ISA_ARCV3"
56 #error "Unsupported configuration: ARC_FIRQ and (NUM_IRQ_PRIO_LEVELS < 2)"
60 #error "Unsupported configuration: (RGF_NUM_BANKS > 1) and !ARC_FIRQ"
69 #error "Unsupported configuration: (RGF_NUM_BANKS > 1) and (NUM_IRQ_PRIO_LEVELS < 2)"
73 #error "Unsupported configuration: ARC_FIRQ_STACK and !ARC_FIRQ"
77 #error "Unsupported configuration: ARC_FIRQ_STACK and (RGF_NUM_BANKS < 2)"
82 #error "Unsupported configuration: ARC_FIRQ and ARC_HAS_SECURE"
86 #error "Non-multithreading mode isn't supported on SMP targets"
122 #error "Unsupported MPU version"
/Zephyr-latest/modules/hal_silabs/simplicity_sdk/config/
Dsl_clock_manager_tree_config.h37 #error "Invalid clock source selection for SYSCLK"
74 #error "Invalid clock source selection for TRACECLK"
107 #error "Invalid clock source selection for EM01GRPACLK"
131 #error "Invalid clock source selection for EM01GRPBCLK"
157 #error "Invalid clock source selection for EM01GRPCCLK"
175 #error "Invalid clock source selection for IADCCLK"
189 #error "Invalid clock source selection for LESENSEHFCLK"
204 #error "Invalid clock source selection for EM23GRPACLK"
218 #error "Invalid clock source selection for EM4GRPACLK"
233 #error "Invalid clock source selection for RTCCCLK"
[all …]
/Zephyr-latest/drivers/i2c/
Di2c_mcux_flexcomm.c249 int error = 0; in mcux_flexcomm_recover_bus() local
263 error = gpio_pin_configure_dt(&config->scl, GPIO_OUTPUT_HIGH); in mcux_flexcomm_recover_bus()
264 if (error != 0) { in mcux_flexcomm_recover_bus()
265 LOG_ERR("failed to configure SCL GPIO (err %d)", error); in mcux_flexcomm_recover_bus()
269 error = gpio_pin_configure_dt(&config->sda, GPIO_OUTPUT_HIGH); in mcux_flexcomm_recover_bus()
270 if (error != 0) { in mcux_flexcomm_recover_bus()
271 LOG_ERR("failed to configure SDA GPIO (err %d)", error); in mcux_flexcomm_recover_bus()
278 error = i2c_bitbang_configure(&bitbang_ctx, bitrate_cfg); in mcux_flexcomm_recover_bus()
279 if (error != 0) { in mcux_flexcomm_recover_bus()
280 LOG_ERR("failed to configure I2C bitbang (err %d)", error); in mcux_flexcomm_recover_bus()
[all …]
/Zephyr-latest/drivers/ieee802154/
Dieee802154_mcr20a.c294 goto error; in mcr20a_timer_set()
316 goto error; in mcr20a_timer_set()
320 goto error; in mcr20a_timer_set()
325 error: in mcr20a_timer_set()
337 goto error; in mcr20a_timer_init()
341 goto error; in mcr20a_timer_init()
347 goto error; in mcr20a_timer_init()
353 error: in mcr20a_timer_init()
366 goto error; in mcr20a_t4cmp_set()
374 goto error; in mcr20a_t4cmp_set()
[all …]
/Zephyr-latest/subsys/net/lib/mqtt/
Dmqtt_transport_socket_tls.c42 goto error; in mqtt_client_tls_connect()
51 goto error; in mqtt_client_tls_connect()
59 goto error; in mqtt_client_tls_connect()
68 goto error; in mqtt_client_tls_connect()
79 goto error; in mqtt_client_tls_connect()
90 goto error; in mqtt_client_tls_connect()
99 goto error; in mqtt_client_tls_connect()
112 goto error; in mqtt_client_tls_connect()
118 error: in mqtt_client_tls_connect()
/Zephyr-latest/subsys/storage/flash_map/
Dflash_map_integrity.c74 goto error; in flash_area_check_int_sha256()
84 goto error; in flash_area_check_int_sha256()
97 goto error; in flash_area_check_int_sha256()
106 goto error; in flash_area_check_int_sha256()
110 error: in flash_area_check_int_sha256()

12345678910>>...48