Home
last modified time | relevance | path

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

12345678910>>...15

/Zephyr-Core-3.4.0/.github/workflows/
Dcoding_guidelines.yml53 errors=$(cat output.txt)
54 errors="${errors//'%'/'%25'}"
55 errors="${errors//$'\n'/'%0A'}"
56 errors="${errors//$'\r'/'%0D'}"
57 echo "::error file=output.txt::$errors"
Dcompliance.yml79 errors=$(cat $f)
80 errors="${errors//'%'/'%25'}"
81 errors="${errors//$'\n'/'%0A'}"
82 errors="${errors//$'\r'/'%0D'}"
83 echo "::error file=${f}::$errors"
/Zephyr-Core-3.4.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-Core-3.4.0/modules/canopennode/
DCO_driver.c237 CANmodule->errors = 0; in CO_CANmodule_init()
439 uint32_t errors; in CO_CANverifyErrors() local
454 errors = ((uint32_t)err_cnt.tx_err_cnt << 16) | in CO_CANverifyErrors()
458 if (errors != CANmodule->errors) { in CO_CANverifyErrors()
459 CANmodule->errors = errors; in CO_CANverifyErrors()
464 CO_EMC_BUS_OFF_RECOVERED, errors); in CO_CANverifyErrors()
467 CO_errorReset(em, CO_EM_CAN_TX_BUS_OFF, errors); in CO_CANverifyErrors()
473 CO_EMC_NO_ERROR, errors); in CO_CANverifyErrors()
477 errors); in CO_CANverifyErrors()
483 CO_EMC_CAN_PASSIVE, errors); in CO_CANverifyErrors()
[all …]
/Zephyr-Core-3.4.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-Core-3.4.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-Core-3.4.0/scripts/pylib/twister/twisterlib/
Dreports.py43 fails, passes, errors, skips = stats
68 errors += 1
85 return (fails, passes, errors, skips)
113 errors="0", skipped="0")
122 fails = passes = errors = skips = 0
135 fails, passes, errors, skips = self.xunit_testcase(eleTestsuite,
137 (fails, passes, errors, skips), log, True)
139 total = errors + passes + fails + skips
143 eleTestsuite.attrib['errors'] = f"{errors}"
185 errors="0", skipped="0")
[all …]
/Zephyr-Core-3.4.0/samples/net/capture/
DREADME.rst57 RX errors 0 dropped 0 overruns 0 frame 0
59 TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
66 RX errors 0 dropped 0 overruns 0 frame 0
68 TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
75 RX errors 0 dropped 0 overruns 0 frame 0
77 TX errors 8 dropped 8 overruns 0 carrier 8 collisions 0
84 RX errors 0 dropped 0 overruns 0 frame 0
86 TX errors 7 dropped 0 overruns 0 carrier 0 collisions 0
93 RX errors 0 dropped 0 overruns 0 frame 0
95 TX errors 7 dropped 7 overruns 0 carrier 0 collisions 0
/Zephyr-Core-3.4.0/include/zephyr/drivers/
Dhwinfo.h67 * @retval any negative value on driver specific errors.
91 * @retval any negative value on driver specific errors.
104 * @retval any negative value on driver specific errors.
119 * @retval any negative value on driver specific errors.
/Zephyr-Core-3.4.0/scripts/pylib/twister/
Dscl.py35 :raises: any other exception on file access errors
41 except yaml.scanner.ScannerError as e: # For errors parsing schema.yaml
77 :raises pykwalify.errors.SchemaError: on Schema violation error
/Zephyr-Core-3.4.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-Core-3.4.0/subsys/net/lib/sntp/
Dsntp_simple.c27 /* Just in case, as namespace for getaddrinfo errors is in sntp_simple()
28 * different from errno errors. in sntp_simple()
/Zephyr-Core-3.4.0/drivers/regulator/
Dregulator_shell.c338 regulator_error_flags_t errors; in cmd_errors() local
349 ret = regulator_get_error_flags(dev, &errors); in cmd_errors()
356 ((errors & REGULATOR_ERROR_OVER_VOLTAGE) != 0U) ? "X" in cmd_errors()
359 ((errors & REGULATOR_ERROR_OVER_CURRENT) != 0U) ? "X" in cmd_errors()
362 ((errors & REGULATOR_ERROR_OVER_TEMP) != 0U) ? "X" : " "); in cmd_errors()
409 SHELL_CMD_ARG(errors, NULL,
410 "Get errors\n"
411 "Usage: errors <device>",
/Zephyr-Core-3.4.0/drivers/edac/
Dshell.c30 * edac info ecc_error [show|clear] Show ECC Errors
31 * edac info parity_error [show|clear] Show Parity Errors
119 "Errors correctable: %d Errors uncorrectable %d\n", in cmd_edac_info()
399 SHELL_CMD(show, NULL, "Show ECC errors", cmd_ecc_error_show),
400 SHELL_CMD(clear, NULL, "Clear ECC errors", cmd_ecc_error_clear),
443 SHELL_CMD(show, NULL, "Show Parity errors", cmd_parity_error_show),
444 SHELL_CMD(clear, NULL, "Clear Parity errors", cmd_parity_error_clear),
/Zephyr-Core-3.4.0/drivers/serial/
Duart_xlnx_uartlite.c50 uint32_t errors; member
73 /* Cache errors as they are cleared by reading the STAT_REG */ in xlnx_uartlite_read_status()
75 data->errors &= (status & STAT_REG_ERROR_MASK); in xlnx_uartlite_read_status()
77 /* Return current status and previously cached errors */ in xlnx_uartlite_read_status()
78 return status | data->errors; in xlnx_uartlite_read_status()
85 /* Clear cached errors */ in xlnx_uartlite_clear_status()
86 data->errors = 0; in xlnx_uartlite_clear_status()
/Zephyr-Core-3.4.0/tests/bluetooth/host/id/mocks/
Ddevicetree_generated.h8 * Dummy header file to avoid compiler errors
/Zephyr-Core-3.4.0/tests/bluetooth/host/id/mocks/syscalls/
Ddevice.h8 * Dummy header file to avoid compiler errors
Dmem_manage.h8 * Dummy header file to avoid compiler errors
/Zephyr-Core-3.4.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-Core-3.4.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-Core-3.4.0/samples/tfm_integration/psa_crypto/src/
Dutil_app_log.c21 /* Generic PSA errors (psa/error.h). */ in al_psa_status()
83 /* PSA crypto errors (psa/crypto_values.h). */ in al_psa_status()
/Zephyr-Core-3.4.0/doc/connectivity/bluetooth/api/mesh/
Dhealth_srv.rst16 Faults are split into warnings and errors. Warnings indicate conditions that
18 necessarily damaging to the device. Errors indicate conditions that are
/Zephyr-Core-3.4.0/soc/riscv/riscv-ite/it8xxx2/
DKconfig.series8 # default in most toolchains, causing link-time errors.

12345678910>>...15