/hal_espressif-latest/components/log/include/ |
D | esp_log.h | 170 #define ESP_LOG_BUFFER_HEX_LEVEL( tag, buffer, buff_len, level ) \ argument 186 #define ESP_LOG_BUFFER_CHAR_LEVEL( tag, buffer, buff_len, level ) \ argument 209 #define ESP_LOG_BUFFER_HEXDUMP( tag, buffer, buff_len, level ) \ argument 226 #define ESP_LOG_BUFFER_HEX(tag, buffer, buff_len) \ argument 243 #define ESP_LOG_BUFFER_CHAR(tag, buffer, buff_len) \ argument 298 #define ESP_EARLY_LOGE( tag, format, ... ) ESP_LOG_EARLY_IMPL(tag, format, ESP_LOG_ERROR, E __VA_… argument 300 #define ESP_EARLY_LOGW( tag, format, ... ) ESP_LOG_EARLY_IMPL(tag, format, ESP_LOG_WARN, W __VA_… argument 302 #define ESP_EARLY_LOGI( tag, format, ... ) ESP_LOG_EARLY_IMPL(tag, format, ESP_LOG_INFO, I __VA_… argument 304 #define ESP_EARLY_LOGD( tag, format, ... ) ESP_LOG_EARLY_IMPL(tag, format, ESP_LOG_DEBUG, D __VA_… argument 306 #define ESP_EARLY_LOGV( tag, format, ... ) ESP_LOG_EARLY_IMPL(tag, format, ESP_LOG_VERBOSE, V __VA_… argument [all …]
|
/hal_espressif-latest/components/esp_hw_support/port/include/ |
D | esp_hw_log.h | 20 #define ESP_HW_LOGE(tag, fmt, ...) ESP_EARLY_LOGE(tag, fmt, ##__VA_ARGS__) argument 21 #define ESP_HW_LOGW(tag, fmt, ...) ESP_EARLY_LOGW(tag, fmt, ##__VA_ARGS__) argument 22 #define ESP_HW_LOGI(tag, fmt, ...) ESP_EARLY_LOGI(tag, fmt, ##__VA_ARGS__) argument 23 #define ESP_HW_LOGD(tag, fmt, ...) ESP_EARLY_LOGD(tag, fmt, ##__VA_ARGS__) argument 24 #define ESP_HW_LOGV(tag, fmt, ...) ESP_EARLY_LOGV(tag, fmt, ##__VA_ARGS__) argument 28 #define ESP_HW_LOGE(tag, fmt, ...) esp_rom_printf("%s(err): " fmt, tag, ##__VA_ARGS__) argument 29 #define ESP_HW_LOGW(tag, fmt, ...) esp_rom_printf("%s(warn): " fmt, tag, ##__VA_ARGS__) argument 30 #define ESP_HW_LOGI(tag, fmt, ...) esp_rom_printf("%s(info): " fmt, tag, ##__VA_ARGS__) argument 31 #define ESP_HW_LOGD(tag, fmt, ...) esp_rom_printf("%s(dbg): " fmt, tag, ##__VA_ARGS__) argument 32 #define ESP_HW_LOGV(tag, fmt, ...) esp_rom_printf("%s: " fmt, tag, ##__VA_ARGS__) argument
|
/hal_espressif-latest/components/hal/platform_port/include/hal/ |
D | log.h | 43 #define HAL_LOGE(tag, fmt, ...) esp_rom_printf("%s(err): " fmt, tag, ##__VA_ARGS__) argument 45 #define HAL_LOGE(tag, fmt, ...) argument 49 #define HAL_LOGW(tag, fmt, ...) esp_rom_printf("%s(warn): " fmt, tag, ##__VA_ARGS__) argument 51 #define HAL_LOGW(tag, fmt, ...) argument 55 #define HAL_LOGI(tag, fmt, ...) esp_rom_printf("%s(info): " fmt, tag, ##__VA_ARGS__) argument 57 #define HAL_LOGI(tag, fmt, ...) argument 61 #define HAL_LOGD(tag, fmt, ...) esp_rom_printf("%s(dbg): " fmt, tag, ##__VA_ARGS__) argument 63 #define HAL_LOGD(tag, fmt, ...) argument 67 #define HAL_LOGV(tag, fmt, ...) esp_rom_printf("%s: " fmt, tag, ##__VA_ARGS__) argument 69 #define HAL_LOGV(tag, fmt, ...) argument
|
/hal_espressif-latest/components/log/ |
D | log.c | 50 const char *tag; member 58 char tag[0]; // beginning of a zero-terminated string member 91 void esp_log_level_set(const char *tag, esp_log_level_t level) in esp_log_level_set() 146 static esp_log_level_t s_log_level_get_and_unlock(const char *tag) in s_log_level_get_and_unlock() 164 esp_log_level_t esp_log_level_get(const char *tag) in esp_log_level_get() 185 const char *tag, in esp_log_writev() 202 const char *tag, in esp_log_write() 211 static inline bool get_cached_log_level(const char *tag, esp_log_level_t *level) in get_cached_log_level() 246 static inline void add_to_cache(const char *tag, esp_log_level_t level) in add_to_cache() 285 static inline bool get_uncached_log_level(const char *tag, esp_log_level_t *level) in get_uncached_log_level()
|
D | log_buffers.c | 25 void esp_log_buffer_hex_internal(const char *tag, const void *buffer, uint16_t buff_len, in esp_log_buffer_hex_internal() 59 void esp_log_buffer_char_internal(const char *tag, const void *buffer, uint16_t buff_len, in esp_log_buffer_char_internal() 93 void esp_log_buffer_hexdump_internal(const char *tag, const void *buffer, uint16_t buff_len, esp_lo… in esp_log_buffer_hexdump_internal()
|
/hal_espressif-latest/components/spi_flash/sim/stubs/log/include/ |
D | esp_log.h | 51 #define ESP_LOGE( tag, format, ... ) if (LOG_LOCAL_LEVEL >= ESP_LOG_ERROR) { esp_log_write(ESP_L… argument 53 #define ESP_LOGW( tag, format, ... ) if (LOG_LOCAL_LEVEL >= ESP_LOG_WARN) { esp_log_write(ESP_L… argument 55 #define ESP_LOGI( tag, format, ... ) if (LOG_LOCAL_LEVEL >= ESP_LOG_INFO) { esp_log_write(ESP_L… argument 57 #define ESP_LOGD( tag, format, ... ) if (LOG_LOCAL_LEVEL >= ESP_LOG_DEBUG) { esp_log_write(ESP_L… argument 59 #define ESP_LOGV( tag, format, ... ) if (LOG_LOCAL_LEVEL >= ESP_LOG_VERBOSE) { esp_log_write(ESP_L… argument
|
/hal_espressif-latest/components/efuse/esp32s2/ |
D | esp_efuse_rtc_table.c | 39 const int tag; // should be the same as the index in adc_efuse_raw_map member 131 int esp_efuse_rtc_table_get_raw_efuse_value(int tag) in esp_efuse_rtc_table_get_raw_efuse_value() 145 int esp_efuse_rtc_table_get_parsed_efuse_value(int tag, bool skip_efuse_reading) in esp_efuse_rtc_table_get_parsed_efuse_value()
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/include/ |
D | mesh_trace.h | 64 #define BLE_MESH_PRINT_E(tag, format, ...) {esp_log_write(ESP_LOG_ERROR, tag, LOG_FORMAT(E, form… argument 65 #define BLE_MESH_PRINT_W(tag, format, ...) {esp_log_write(ESP_LOG_WARN, tag, LOG_FORMAT(W, form… argument 66 #define BLE_MESH_PRINT_I(tag, format, ...) {esp_log_write(ESP_LOG_INFO, tag, LOG_FORMAT(I, form… argument 67 #define BLE_MESH_PRINT_D(tag, format, ...) {esp_log_write(ESP_LOG_DEBUG, tag, LOG_FORMAT(D, form… argument 68 #define BLE_MESH_PRINT_V(tag, format, ...) {esp_log_write(ESP_LOG_VERBOSE, tag, LOG_FORMAT(V, form… argument
|
/hal_espressif-latest/components/bt/porting/ext/tinycrypt/src/ |
D | ccm_mode.c | 155 uint8_t tag[Nb * Nk]; in tc_ccm_generation_encryption() local 216 uint8_t tag[Nb * Nk]; in tc_ccm_decryption_verification() local
|
D | hmac.c | 125 int tc_hmac_final(uint8_t *tag, unsigned int taglen, TCHmacState_t ctx) in tc_hmac_final()
|
D | cmac_mode.c | 222 int tc_cmac_final(uint8_t *tag, TCCmacState_t s) in tc_cmac_final()
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/tinycrypt/src/ |
D | ccm_mode.c | 155 uint8_t tag[Nb * Nk]; in tc_ccm_generation_encryption() local 216 uint8_t tag[Nb * Nk]; in tc_ccm_decryption_verification() local
|
D | hmac.c | 124 int tc_hmac_final(uint8_t *tag, unsigned int taglen, TCHmacState_t ctx) in tc_hmac_final()
|
D | cmac_mode.c | 222 int tc_cmac_final(uint8_t *tag, TCCmacState_t s) in tc_cmac_final()
|
/hal_espressif-latest/components/mbedtls/port/aes/ |
D | esp_aes_gcm.c | 566 unsigned char *tag, size_t tag_len ) in esp_aes_gcm_finish() 632 unsigned char *tag ) in esp_aes_gcm_crypt_and_tag_partial_hw() 666 unsigned char *tag ) in esp_aes_gcm_crypt_and_tag() 788 const unsigned char *tag, in esp_aes_gcm_auth_decrypt()
|
/hal_espressif-latest/components/wpa_supplicant/src/crypto/ |
D | aes-gcm.c | 256 const u8 *aad, size_t aad_len, u8 *crypt, u8 *tag) in aes_gcm_ae() 290 const u8 *aad, size_t aad_len, const u8 *tag, u8 *plain) in aes_gcm_ad() 323 const u8 *aad, size_t aad_len, u8 *tag) in aes_gmac()
|
D | crypto_ops.c | 41 const u8 *aad, size_t aad_len, u8 *tag) in esp_aes_gmac()
|
/hal_espressif-latest/components/bt/common/include/ |
D | bt_common.h | 134 #define BT_PRINT_E(tag, format, ...) {esp_log_write(ESP_LOG_ERROR, tag, LOG_FORMAT(E, format), … argument 135 #define BT_PRINT_W(tag, format, ...) {esp_log_write(ESP_LOG_WARN, tag, LOG_FORMAT(W, format), … argument 136 #define BT_PRINT_I(tag, format, ...) {esp_log_write(ESP_LOG_INFO, tag, LOG_FORMAT(I, format), … argument 137 #define BT_PRINT_D(tag, format, ...) {esp_log_write(ESP_LOG_DEBUG, tag, LOG_FORMAT(D, format), … argument 138 #define BT_PRINT_V(tag, format, ...) {esp_log_write(ESP_LOG_VERBOSE, tag, LOG_FORMAT(V, format), … argument
|
/hal_espressif-latest/components/spi_flash/sim/stubs/log/ |
D | log.c | 17 const char *tag, in esp_log_write()
|
/hal_espressif-latest/components/bt/common/hci_log/ |
D | bt_hci_log.c | 96 char *tag = NULL; in bt_data_type_to_str() local 226 char *tag = NULL; in bt_hci_log_record_data() local
|
/hal_espressif-latest/components/wpa_supplicant/src/tls/ |
D | asn1.h | 52 unsigned int tag, length; member 184 static inline bool asn1_is_cs_tag(const struct asn1_hdr *hdr, unsigned int tag) in asn1_is_cs_tag()
|
D | asn1.c | 580 void asn1_put_hdr(struct wpabuf *buf, u8 class, int constructed, u8 tag, in asn1_put_hdr() 637 struct wpabuf * asn1_encaps(struct wpabuf *buf, u8 class, u8 tag) in asn1_encaps()
|
/hal_espressif-latest/components/hal/ |
D | aes_hal.c | 126 void aes_hal_gcm_read_tag(uint8_t *tag, size_t tag_len) in aes_hal_gcm_read_tag()
|
/hal_espressif-latest/components/esp_hw_support/ |
D | adc_share_hw_ctrl.c | 59 int tag = esp_efuse_rtc_table_get_tag(version, adc_unit, atten, RTCCALIB_V2_PARAM_VINIT); in esp_efuse_rtc_calib_get_init_code() local
|
/hal_espressif-latest/zephyr/esp32s2/src/esp_adc_cal/ |
D | esp_adc_cal.c | 51 int tag; in prepare_calib_data_for() local
|