Home
last modified time | relevance | path

Searched refs:message (Results 1 – 25 of 64) sorted by relevance

123

/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/
Doutput_helpers.py44 def color_print(message, color, newline='\n'): # type: (str, str, Optional[str]) -> None argument
46 sys.stderr.write('%s%s%s%s' % (color, message, ANSI_NORMAL, newline))
49 def normal_print(message): # type: (str) -> None argument
50 sys.stderr.write(ANSI_NORMAL + message)
53 def yellow_print(message, newline='\n'): # type: (str, Optional[str]) -> None argument
54 color_print(message, ANSI_YELLOW, newline)
57 def red_print(message, newline='\n'): # type: (str, Optional[str]) -> None argument
58 color_print(message, ANSI_RED, newline)
/hal_espressif-latest/components/hal/include/hal/
Dtwai_hal.h238 static inline void twai_hal_format_frame(const twai_message_t *message, twai_hal_frame_t *frame) in twai_hal_format_frame() argument
241 twai_ll_format_frame_buffer(message->identifier, message->data_length_code, message->data, in twai_hal_format_frame()
242 message->flags, frame); in twai_hal_format_frame()
254 static inline void twai_hal_parse_frame(twai_hal_frame_t *frame, twai_message_t *message) in twai_hal_parse_frame() argument
257 twai_ll_parse_frame_buffer(frame, &message->identifier, &message->data_length_code, in twai_hal_parse_frame()
258 message->data, &message->flags); in twai_hal_parse_frame()
/hal_espressif-latest/tools/esptool_py/esptool/
Dutil.py60 def print_overwrite(message, last_line=False): argument
72 print("\r%s" % message, end="\n" if last_line else "")
74 print(message)
122 def __init__(self, message): argument
123 RuntimeError.__init__(self, message)
126 def WithResult(message, result): argument
166 message += " (result was {}: {})".format(
169 return FatalError(message)
/hal_espressif-latest/components/esp_hw_support/
Desp_ds.c96 esp_err_t esp_ds_sign(const void *message, in esp_ds_sign() argument
108 esp_err_t result = esp_ds_start_sign(message, data, key_id, &context); in esp_ds_sign()
120 esp_err_t esp_ds_start_sign(const void *message, in esp_ds_start_sign() argument
125 if (!message || !data || !esp_ds_ctx) { in esp_ds_start_sign()
160 ets_ds_result_t result = ets_ds_start_sign(message, ds_data); in esp_ds_start_sign()
279 esp_err_t esp_ds_sign(const void *message, in esp_ds_sign() argument
291 esp_err_t result = esp_ds_start_sign(message, data, key_id, &context); in esp_ds_sign()
303 esp_err_t esp_ds_start_sign(const void *message, in esp_ds_start_sign() argument
308 if (!message || !data || !esp_ds_ctx) { in esp_ds_start_sign()
355 ds_hal_write_message(message, rsa_len); in esp_ds_start_sign()
Desp_hmac.c54 const void *message, in esp_hmac_calculate() argument
58 const uint8_t *message_bytes = (const uint8_t *)message; in esp_hmac_calculate()
60 if (!message || !hmac) { in esp_hmac_calculate()
199 const void *message, in esp_hmac_calculate() argument
204 if (!message || !hmac) return ESP_ERR_INVALID_ARG; in esp_hmac_calculate()
210 hmac_ret = ets_hmac_calculate_message(convert_key_type(key_id), message, message_len, hmac); in esp_hmac_calculate()
/hal_espressif-latest/tools/esptool_py/ci/
Dgh_changelog_template.md.j214 - **{{ change.scope }}**: {{ change.message }}
15 {% elif change.message %}
16 - {{ change.message }}
/hal_espressif-latest/components/xtensa/
Dproject_include.cmake15 message("Compiler supported targets: ${dump_machine}")
18 message(FATAL_ERROR "Internal error, toolchain has not been set correctly by project "
/hal_espressif-latest/components/esp_hw_support/include/
Desp_ds.h132 esp_err_t esp_ds_sign(const void *message,
172 esp_err_t esp_ds_start_sign(const void *message,
Desp_hmac.h56 const void *message,
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/
Dget-custom-mac-cmd.rst19 …If the custom MAC address is not burned, then you will see the message "Custom MAC Address is not …
30 …If the custom MAC address is not burned, then you will see the message "Custom MAC Address: 00:00:…
/hal_espressif-latest/components/esp_rom/include/esp32s3/rom/
Dhmac.h31 int ets_hmac_calculate_message(ets_efuse_block_t key_block, const void *message, size_t message_len…
Ddigital_signature.h80 ets_ds_result_t ets_ds_start_sign(const void *message, const ets_ds_data_t *data);
/hal_espressif-latest/components/esp_rom/include/esp32c3/rom/
Dhmac.h33 int ets_hmac_calculate_message(ets_efuse_block_t key_block, const void *message, size_t message_len…
Ddigital_signature.h87 ets_ds_result_t ets_ds_start_sign(const void *message, const ets_ds_data_t *data);
/hal_espressif-latest/components/esp_rom/include/esp32c6/rom/
Dhmac.h25 int ets_hmac_calculate_message(ets_efuse_block_t key_block, const void *message, size_t message_len…
Ddigital_signature.h79 ets_ds_result_t ets_ds_start_sign(const void *message, const ets_ds_data_t *data);
/hal_espressif-latest/components/esp_rom/include/esp32h2/rom/
Dhmac.h25 int ets_hmac_calculate_message(ets_efuse_block_t key_block, const void *message, size_t message_len…
Ddigital_signature.h79 ets_ds_result_t ets_ds_start_sign(const void *message, const ets_ds_data_t *data);
/hal_espressif-latest/components/esp_rom/include/esp32s2/rom/
Dhmac.h33 int ets_hmac_calculate_message(ets_efuse_block_t key_block, const void *message, size_t message_len…
Ddigital_signature.h84 ets_ds_result_t ets_ds_start_sign(const void *message, const ets_ds_data_t *data);
/hal_espressif-latest/components/mbedtls/port/dynamic/
Desp_ssl_tls.c15 …edtls_ssl_send_alert_message(mbedtls_ssl_context *ssl, unsigned char level, unsigned char message);
23 …edtls_ssl_send_alert_message(mbedtls_ssl_context *ssl, unsigned char level, unsigned char message);
370 …bedtls_ssl_send_alert_message(mbedtls_ssl_context *ssl, unsigned char level, unsigned char message) in __wrap_mbedtls_ssl_send_alert_message() argument
376 ret = __real_mbedtls_ssl_send_alert_message(ssl, level, message); in __wrap_mbedtls_ssl_send_alert_message()
/hal_espressif-latest/components/bootloader/subproject/
DCMakeLists.txt4 message(FATAL_ERROR "Bootloader subproject expects the SDKCONFIG variable to be passed "
9 message(FATAL_ERROR "Bootloader subproject expects the IDF_PATH variable to be passed "
14 message(FATAL_ERROR "Bootloader subproject expects the IDF_TARGET variable to be passed "
103 message(FATAL_ERROR
133 message(FATAL_ERROR
/hal_espressif-latest/components/esp_common/
Dproject_include.cmake14message(WARNING "Building ESP-IDF with clang is an experimental feature and is not yet officially …
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/
Demulate_efuse_controller_base.py220 def __init__(self, message): argument
221 RuntimeError.__init__(self, message)
224 def WithResult(message, result): argument
/hal_espressif-latest/components/esp_rom/include/esp32/rom/
Dcache.h14 …#pragma message("For ESP32 with ECO version < 2, you need to use a DPORT workaround that stalls th…

123