Home
last modified time | relevance | path

Searched full:errors (Results 1 – 25 of 504) sorted by relevance

12345678910>>...21

/Zephyr-latest/.github/workflows/
Dcoding_guidelines.yml55 errors=$(cat output.txt)
56 errors="${errors//'%'/'%25'}"
57 errors="${errors//$'\n'/'%0A'}"
58 errors="${errors//$'\r'/'%0D'}"
59 echo "::error file=output.txt::$errors"
/Zephyr-latest/tests/kernel/timer/timer_monotonic/src/
Dmain.c54 uint32_t i, errors; in ZTEST() local
57 errors = 0U; in ZTEST()
73 errors++; in ZTEST()
78 zassert_false(errors, "errors = %d\n", errors); in ZTEST()
/Zephyr-latest/drivers/serial/
Duart_wch_usart.c101 enum uart_rx_stop_reason errors = 0; in usart_wch_err_check() local
104 errors |= UART_ERROR_PARITY; in usart_wch_err_check()
107 errors |= UART_ERROR_FRAMING; in usart_wch_err_check()
110 errors |= UART_ERROR_NOISE; in usart_wch_err_check()
113 errors |= UART_ERROR_OVERRUN; in usart_wch_err_check()
116 return errors; in usart_wch_err_check()
/Zephyr-latest/modules/thrift/src/thrift/transport/
DTSSLSocket.cpp220 // Ensure the socket is connected and that there are no errors set in openSecConnection()
232 // no errors on socket, go to town in openSecConnection()
404 static void tlsCredtErrMsg(string &errors, const int status);
457 string errors; in loadCertificateFromBuffer() local
458 tlsCredtErrMsg(errors, status); in loadCertificateFromBuffer()
459 throw TSSLException("tls_credential_add: " + errors); in loadCertificateFromBuffer()
474 string errors; in loadPrivateKey() local
475 // tlsCredtErrMsg(errors, status); in loadPrivateKey()
476 throw TSSLException("SSL_CTX_use_PrivateKey_file: " + errors); in loadPrivateKey()
493 string errors; in loadPrivateKeyFromBuffer() local
[all …]
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/openisa/lll/
Dlll_df_types.h7 /* This is currently almost empty file to avoid build errors due to missing header files.
11 /* Forward declarations of types to avoid build errors in ULL code. */
/Zephyr-latest/modules/canopennode/
DCO_driver.c253 CANmodule->errors = 0; in CO_CANmodule_init()
466 uint32_t errors; in CO_CANverifyErrors() local
481 errors = ((uint32_t)err_cnt.tx_err_cnt << 16) | in CO_CANverifyErrors()
485 if (errors != CANmodule->errors) { in CO_CANverifyErrors()
486 CANmodule->errors = errors; in CO_CANverifyErrors()
491 CO_EMC_BUS_OFF_RECOVERED, errors); in CO_CANverifyErrors()
494 CO_errorReset(em, CO_EM_CAN_TX_BUS_OFF, errors); in CO_CANverifyErrors()
500 CO_EMC_NO_ERROR, errors); in CO_CANverifyErrors()
504 errors); in CO_CANverifyErrors()
510 CO_EMC_CAN_PASSIVE, errors); in CO_CANverifyErrors()
[all …]
/Zephyr-latest/tests/drivers/uart/uart_emul/src/
Dbus.c127 int errors; in ZTEST_F() local
130 errors = uart_err_check(fixture->dev); in ZTEST_F()
131 zassert_equal(errors, (UART_ERROR_PARITY | UART_ERROR_FRAMING), "UART errors do not match"); in ZTEST_F()
133 /* uart_err_check should also clear existing errors */ in ZTEST_F()
134 errors = uart_err_check(fixture->dev); in ZTEST_F()
135 zassert_equal(errors, 0, "Should be no errors"); in ZTEST_F()
139 errors = uart_err_check(fixture->dev); in ZTEST_F()
140 zassert_equal(errors, 0, "Should be no errors"); in ZTEST_F()
142 errors = uart_err_check(fixture->dev); in ZTEST_F()
143 zassert_equal(errors, UART_ERROR_OVERRUN, "UART errors do not match"); in ZTEST_F()
/Zephyr-latest/include/zephyr/drivers/serial/
Duart_emul.h87 * @brief Sets one or more driver errors
90 * @param errors The @ref uart_rx_stop_reason errors to set
92 void uart_emul_set_errors(const struct device *dev, int errors);
/Zephyr-latest/samples/net/capture/
DREADME.rst60 RX errors 0 dropped 0 overruns 0 frame 0
62 TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
69 RX errors 0 dropped 0 overruns 0 frame 0
71 TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
78 RX errors 0 dropped 0 overruns 0 frame 0
80 TX errors 8 dropped 8 overruns 0 carrier 8 collisions 0
87 RX errors 0 dropped 0 overruns 0 frame 0
89 TX errors 7 dropped 0 overruns 0 carrier 0 collisions 0
96 RX errors 0 dropped 0 overruns 0 frame 0
98 TX errors 7 dropped 7 overruns 0 carrier 0 collisions 0
/Zephyr-latest/include/zephyr/net/
Dnet_stats.h102 /** Number of packets dropped due to IP checksum errors. */
384 /** IP layer errors */
476 /** Number of RX length errors */
479 /** Number of RX overrun errors */
482 /** Number of RX CRC errors */
485 /** Number of RX frame errors */
488 /** Number of RX net_pkt allocation errors */
491 /** Number of RX missed errors */
494 /** Number of RX long length errors */
497 /** Number of RX short length errors */
[all …]
/Zephyr-latest/doc/hardware/peripherals/can/
Dshell.rst77 rx errors: 0
78 tx errors: 0
83 bit errors: 0
84 bit0 errors: 0
85 bit1 errors: 0
86 stuff errors: 0
87 crc errors: 0
88 form errors: 0
89 ack errors: 0
/Zephyr-latest/include/zephyr/drivers/
Dhwinfo.h92 * @retval any negative value on driver specific errors.
108 * @retval any negative value on driver specific errors.
132 * @retval any negative value on driver specific errors.
145 * @retval any negative value on driver specific errors.
160 * @retval any negative value on driver specific errors.
/Zephyr-latest/scripts/pylib/twister/
Dscl.py40 :raises: any other exception on file access errors
46 except yaml.scanner.ScannerError as e: # For errors parsing schema.yaml
82 :raises pykwalify.errors.SchemaError: on Schema violation error
/Zephyr-latest/doc/hardware/peripherals/edac/
Dibecc.rst23 IBECC functionality. ECC errors are injected on the write path and cause ECC
24 errors on the read path.
64 implement desired policy with respect for handling those memory errors. Error
/Zephyr-latest/tests/bluetooth/common/testlib/src/
Dconnect.c78 /* Merge the error codes. The errors from `bt_conn_le_create` in bt_testlib_connect()
79 * are negative, leaving the positive space for the HCI errors in bt_testlib_connect()
107 * of errors. This is as documented. in bt_testlib_connect()
/Zephyr-latest/scripts/footprint/
Dpack_as_twister.py161 errors = 0
196 errors += 1
225 errors += 1
231 errors += 1
242 errors += 1
292 f'skipped={skipped}, filtered={filtered}, errors={errors}')
293 sys.exit(errors != 0)
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dreports.py81 fails, passes, errors, skips = stats
106 errors += 1
130 return (fails, passes, errors, skips)
160 errors="0", skipped="0")
169 fails = passes = errors = skips = 0
182 fails, passes, errors, skips = self.xunit_testcase(eleTestsuite,
184 (fails, passes, errors, skips), log, True)
186 total = errors + passes + fails + skips
190 eleTestsuite.attrib['errors'] = f"{errors}"
235 errors="0", skipped="0")
[all …]
/Zephyr-latest/tests/bsim/bluetooth/host/gatt/general/
Dprj.conf8 # Disable auto security so that we can test security errors
/Zephyr-latest/share/sysbuild/build/
DKconfig6 bool "Treat warnings as errors"
/Zephyr-latest/tests/bluetooth/host/conn/mocks/zephyr/syscalls/
Ddevice.h8 * Dummy header file to avoid compiler errors
/Zephyr-latest/tests/bluetooth/controller/mock_ctrl/include/hal/
Ddebug_vendor_hal.h8 * Dummy header file to avoid compiler errors
Dradio_vendor_hal.h8 * Dummy header file to avoid compiler errors
/Zephyr-latest/tests/bluetooth/controller/mock_ctrl/include/
Dsoc.h8 * Dummy header file to avoid compiler errors
Dlll_peripheral.h8 * Dummy header file to avoid compiler errors
/Zephyr-latest/tests/bluetooth/host/id/mocks/zephyr/
Ddevicetree_generated.h8 * Dummy header file to avoid compiler errors

12345678910>>...21