/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/ |
D | output_helpers.py | 44 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/ |
D | twai_hal.h | 238 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/ |
D | util.py | 60 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/ |
D | esp_ds.c | 96 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()
|
D | esp_hmac.c | 54 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/ |
D | gh_changelog_template.md.j2 | 14 - **{{ change.scope }}**: {{ change.message }} 15 {% elif change.message %} 16 - {{ change.message }}
|
/hal_espressif-latest/components/xtensa/ |
D | project_include.cmake | 15 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/ |
D | esp_ds.h | 132 esp_err_t esp_ds_sign(const void *message, 172 esp_err_t esp_ds_start_sign(const void *message,
|
D | esp_hmac.h | 56 const void *message,
|
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/ |
D | get-custom-mac-cmd.rst | 19 …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/ |
D | hmac.h | 31 int ets_hmac_calculate_message(ets_efuse_block_t key_block, const void *message, size_t message_len…
|
D | digital_signature.h | 80 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/ |
D | hmac.h | 33 int ets_hmac_calculate_message(ets_efuse_block_t key_block, const void *message, size_t message_len…
|
D | digital_signature.h | 87 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/ |
D | hmac.h | 25 int ets_hmac_calculate_message(ets_efuse_block_t key_block, const void *message, size_t message_len…
|
D | digital_signature.h | 79 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/ |
D | hmac.h | 25 int ets_hmac_calculate_message(ets_efuse_block_t key_block, const void *message, size_t message_len…
|
D | digital_signature.h | 79 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/ |
D | hmac.h | 33 int ets_hmac_calculate_message(ets_efuse_block_t key_block, const void *message, size_t message_len…
|
D | digital_signature.h | 84 ets_ds_result_t ets_ds_start_sign(const void *message, const ets_ds_data_t *data);
|
/hal_espressif-latest/components/mbedtls/port/dynamic/ |
D | esp_ssl_tls.c | 15 …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/ |
D | CMakeLists.txt | 4 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/ |
D | project_include.cmake | 14 …message(WARNING "Building ESP-IDF with clang is an experimental feature and is not yet officially …
|
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/ |
D | emulate_efuse_controller_base.py | 220 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/ |
D | cache.h | 14 …#pragma message("For ESP32 with ECO version < 2, you need to use a DPORT workaround that stalls th…
|