Home
last modified time | relevance | path

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

12345678910>>...24

/Zephyr-4.3.0/.github/workflows/
Dcoding_guidelines.yml58 errors=$(cat output.txt)
59 errors="${errors//'%'/'%25'}"
60 errors="${errors//$'\n'/'%0A'}"
61 errors="${errors//$'\r'/'%0D'}"
62 echo "::error file=output.txt::$errors"
/Zephyr-4.3.0/scripts/ci/
Dtwister_report_analyzer.py25 To analyze errors with predefined CMake and Build error patterns, run:
49 '--output-md', type=str, help='output markdown file name to store table with errors'
59 help='add errors per platform to the summary',
64 help='show all matched errors grouped by reason, otherwise show only most common errors',
140 self.errors: Counters = Counters()
174 # Extract detailed information to group errors. Keep the parsing methods
178 self.errors.add_counter(reason)
182 self.errors.counters[reason].subcounters.add_counter(error_key, test_identifier)
186 self.errors.add_counter(reason)
190 self.errors.counters[reason].subcounters.add_counter(error_key, test_identifier)
[all …]
/Zephyr-4.3.0/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-4.3.0/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-4.3.0/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-4.3.0/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-4.3.0/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-4.3.0/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-4.3.0/samples/net/capture/
DREADME.rst67 RX errors 0 dropped 0 overruns 0 frame 0
69 TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
76 RX errors 0 dropped 0 overruns 0 frame 0
78 TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
85 RX errors 0 dropped 0 overruns 0 frame 0
87 TX errors 8 dropped 8 overruns 0 carrier 8 collisions 0
94 RX errors 0 dropped 0 overruns 0 frame 0
96 TX errors 7 dropped 0 overruns 0 carrier 0 collisions 0
103 RX errors 0 dropped 0 overruns 0 frame 0
105 TX errors 7 dropped 7 overruns 0 carrier 0 collisions 0
/Zephyr-4.3.0/samples/boards/espressif/spiram_test/src/
Dmain.c42 printk("Byte access errors: %d\n", err_b); in main()
57 printk("Word access errors: %d\n", err_w); in main()
72 printk("DWord access errors: %d\n", err_dw); in main()
/Zephyr-4.3.0/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-4.3.0/include/zephyr/drivers/
Dhwinfo.h96 * @retval <0 any negative value on driver specific errors.
112 * @retval <0 any negative value on driver specific errors.
136 * @retval <0 any negative value on driver specific errors.
149 * @retval <0 any negative value on driver specific errors.
164 * @retval <0 any negative value on driver specific errors.
/Zephyr-4.3.0/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-4.3.0/include/zephyr/net/
Dnet_stats.h102 /** Number of packets dropped due to IP checksum errors. */
416 /** IP layer errors */
512 /** Number of RX length errors */
515 /** Number of RX overrun errors */
518 /** Number of RX CRC errors */
521 /** Number of RX frame errors */
524 /** Number of RX net_pkt allocation errors */
527 /** Number of RX missed errors */
530 /** Number of RX long length errors */
533 /** Number of RX short length errors */
[all …]
/Zephyr-4.3.0/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-4.3.0/tests/bsim/bluetooth/host/gatt/general/
Dprj.conf8 # Disable auto security so that we can test security errors
/Zephyr-4.3.0/share/sysbuild/build/
DKconfig6 bool "Treat warnings as errors"
/Zephyr-4.3.0/tests/bluetooth/host/id/mocks/zephyr/
Ddevicetree_generated.h8 * Dummy header file to avoid compiler errors
/Zephyr-4.3.0/tests/bluetooth/controller/mock_ctrl/include/hal/
Dradio_vendor_hal.h8 * Dummy header file to avoid compiler errors
Ddebug_vendor_hal.h8 * Dummy header file to avoid compiler errors
/Zephyr-4.3.0/tests/bluetooth/controller/mock_ctrl/include/
Dlll_peripheral.h8 * Dummy header file to avoid compiler errors
Dsoc.h8 * Dummy header file to avoid compiler errors
/Zephyr-4.3.0/tests/bluetooth/host/id/mocks/zephyr/syscalls/
Ddevice.h8 * Dummy header file to avoid compiler errors
Dmem_manage.h8 * Dummy header file to avoid compiler errors
/Zephyr-4.3.0/tests/bluetooth/host/conn/mocks/zephyr/syscalls/
Ddevice.h8 * Dummy header file to avoid compiler errors

12345678910>>...24