/hal_espressif-3.6.0/components/log/include/ |
D | esp_log.h | 181 #define ESP_LOG_BUFFER_HEX_LEVEL( tag, buffer, buff_len, level ) \ argument 197 #define ESP_LOG_BUFFER_CHAR_LEVEL( tag, buffer, buff_len, level ) \ argument 220 #define ESP_LOG_BUFFER_HEXDUMP( tag, buffer, buff_len, level ) \ argument 237 #define ESP_LOG_BUFFER_HEX(tag, buffer, buff_len) \ argument 254 #define ESP_LOG_BUFFER_CHAR(tag, buffer, buff_len) \ argument 309 #define ESP_EARLY_LOGE( tag, format, ... ) ESP_LOG_EARLY_IMPL(tag, format, ESP_LOG_ERROR, E __VA_… argument 311 #define ESP_EARLY_LOGW( tag, format, ... ) ESP_LOG_EARLY_IMPL(tag, format, ESP_LOG_WARN, W __VA_… argument 313 #define ESP_EARLY_LOGI( tag, format, ... ) ESP_LOG_EARLY_IMPL(tag, format, ESP_LOG_INFO, I __VA_… argument 315 #define ESP_EARLY_LOGD( tag, format, ... ) ESP_LOG_EARLY_IMPL(tag, format, ESP_LOG_DEBUG, D __VA_… argument 317 #define ESP_EARLY_LOGV( tag, format, ... ) ESP_LOG_EARLY_IMPL(tag, format, ESP_LOG_VERBOSE, V __VA_… argument [all …]
|
/hal_espressif-3.6.0/components/esp_hw_support/include/ |
D | soc_log.h | 20 #define SOC_LOGE(tag, fmt, ...) ESP_EARLY_LOGE(tag, fmt, ##__VA_ARGS__) argument 21 #define SOC_LOGW(tag, fmt, ...) ESP_EARLY_LOGW(tag, fmt, ##__VA_ARGS__) argument 22 #define SOC_LOGI(tag, fmt, ...) ESP_EARLY_LOGI(tag, fmt, ##__VA_ARGS__) argument 23 #define SOC_LOGD(tag, fmt, ...) ESP_EARLY_LOGD(tag, fmt, ##__VA_ARGS__) argument 24 #define SOC_LOGV(tag, fmt, ...) ESP_EARLY_LOGV(tag, fmt, ##__VA_ARGS__) argument 40 #define SOC_LOGE(tag, fmt, ...) esp_rom_printf("%s(err): " fmt, tag, ##__VA_ARGS__) argument 41 #define SOC_LOGW(tag, fmt, ...) esp_rom_printf("%s(warn): " fmt, tag, ##__VA_ARGS__) argument 42 #define SOC_LOGI(tag, fmt, ...) esp_rom_printf("%s(info): " fmt, tag, ##__VA_ARGS__) argument 43 #define SOC_LOGD(tag, fmt, ...) esp_rom_printf("%s(dbg): " fmt, tag, ##__VA_ARGS__) argument 44 #define SOC_LOGV(tag, fmt, ...) esp_rom_printf("%s: " fmt, tag, ##__VA_ARGS__) argument
|
/hal_espressif-3.6.0/zephyr/esp_shared/include/boot/ |
D | esp_log.h | 16 #define ESP_LOGE(tag, fmt, ...) MCUBOOT_LOG_ERR("[%s] " fmt, tag, ##__VA_ARGS__) argument 17 #define ESP_LOGW(tag, fmt, ...) MCUBOOT_LOG_WRN("[%s] " fmt, tag, ##__VA_ARGS__) argument 18 #define ESP_LOGI(tag, fmt, ...) MCUBOOT_LOG_INF("[%s] " fmt, tag, ##__VA_ARGS__) argument 19 #define ESP_LOGD(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument 20 #define ESP_LOGV(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument 22 #define ESP_EARLY_LOGE(tag, fmt, ...) MCUBOOT_LOG_ERR("[%s] " fmt, tag, ##__VA_ARGS__) argument 23 #define ESP_EARLY_LOGW(tag, fmt, ...) MCUBOOT_LOG_WRN("[%s] " fmt, tag, ##__VA_ARGS__) argument 24 #define ESP_EARLY_LOGI(tag, fmt, ...) MCUBOOT_LOG_INF("[%s] " fmt, tag, ##__VA_ARGS__) argument 25 #define ESP_EARLY_LOGD(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument 26 #define ESP_EARLY_LOGV(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument
|
D | soc_log.h | 12 #define SOC_LOGE(tag, fmt, ...) MCUBOOT_LOG_ERR("[%s] " fmt, tag, ##__VA_ARGS__) argument 13 #define SOC_LOGW(tag, fmt, ...) MCUBOOT_LOG_WRN("[%s] " fmt, tag, ##__VA_ARGS__) argument 14 #define SOC_LOGI(tag, fmt, ...) MCUBOOT_LOG_INF("[%s] " fmt, tag, ##__VA_ARGS__) argument 15 #define SOC_LOGD(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument
|
/hal_espressif-3.6.0/components/log/ |
D | log.c | 54 const char *tag; member 62 char tag[0]; // beginning of a zero-terminated string member 95 void esp_log_level_set(const char *tag, esp_log_level_t level) in esp_log_level_set() 150 static esp_log_level_t s_log_level_get_and_unlock(const char *tag) in s_log_level_get_and_unlock() 168 esp_log_level_t esp_log_level_get(const char *tag) in esp_log_level_get() 189 const char *tag, in esp_log_writev() 206 const char *tag, in esp_log_write() 215 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() 273 static inline bool get_uncached_log_level(const char *tag, esp_log_level_t *level) in get_uncached_log_level()
|
D | log_buffers.c | 17 void esp_log_buffer_hex_internal(const char *tag, const void *buffer, uint16_t buff_len, in esp_log_buffer_hex_internal() 51 void esp_log_buffer_char_internal(const char *tag, const void *buffer, uint16_t buff_len, in esp_log_buffer_char_internal() 85 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-3.6.0/components/spi_flash/sim/stubs/log/include/ |
D | esp_log.h | 53 #define ESP_LOGE( tag, format, ... ) if (LOG_LOCAL_LEVEL >= ESP_LOG_ERROR) { esp_log_write(ESP_L… argument 55 #define ESP_LOGW( tag, format, ... ) if (LOG_LOCAL_LEVEL >= ESP_LOG_WARN) { esp_log_write(ESP_L… argument 57 #define ESP_LOGI( tag, format, ... ) if (LOG_LOCAL_LEVEL >= ESP_LOG_INFO) { esp_log_write(ESP_L… argument 59 #define ESP_LOGD( tag, format, ... ) if (LOG_LOCAL_LEVEL >= ESP_LOG_DEBUG) { esp_log_write(ESP_L… argument 61 #define ESP_LOGV( tag, format, ... ) if (LOG_LOCAL_LEVEL >= ESP_LOG_VERBOSE) { esp_log_write(ESP_L… argument
|
/hal_espressif-3.6.0/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-3.6.0/components/efuse/esp32s2/ |
D | esp_efuse_rtc_table.c | 37 const int tag; // should be the same as the index in adc_efuse_raw_map member 129 int esp_efuse_rtc_table_get_raw_efuse_value(int tag) in esp_efuse_rtc_table_get_raw_efuse_value() 143 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-3.6.0/examples/protocols/sockets/non_blocking/main/ |
D | non_blocking_socket_example.c | 45 static void log_socket_error(const char *tag, const int sock, const int err, const char *message) in log_socket_error() 65 static int try_receive(const char *tag, const int sock, char * data, size_t max_len) in try_receive() 94 static int socket_send(const char *tag, const int sock, const char * data, const size_t len) in socket_send()
|
/hal_espressif-3.6.0/components/driver/test/param_test/include/ |
D | param_test.h | 154 #define TEST_SINGLE_BOARD(name, param_group, tag, test_func) \ argument 166 #define TEST_MASTER_SLAVE(name, param_group, tag, master_func, slave_func) \ argument
|
/hal_espressif-3.6.0/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-3.6.0/components/mbedtls/port/aes/ |
D | esp_aes_gcm.c | 469 unsigned char *tag, in esp_aes_gcm_finish() 530 unsigned char *tag ) in esp_aes_gcm_crypt_and_tag_partial_hw() 559 unsigned char *tag ) in esp_aes_gcm_crypt_and_tag() 668 const unsigned char *tag, in esp_aes_gcm_auth_decrypt()
|
/hal_espressif-3.6.0/examples/bluetooth/hci/controller_hci_uart_esp32/main/ |
D | controller_hci_uart_demo.c | 16 static const char *tag = "CONTROLLER_UART_HCI"; variable
|
/hal_espressif-3.6.0/components/spi_flash/sim/stubs/log/ |
D | log.c | 17 const char *tag, in esp_log_write()
|
/hal_espressif-3.6.0/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 | 40 const u8 *aad, size_t aad_len, u8 *tag) in esp_aes_gmac()
|
/hal_espressif-3.6.0/components/bt/common/include/ |
D | bt_common.h | 104 #define BT_PRINT_E(tag, format, ...) {esp_log_write(ESP_LOG_ERROR, tag, LOG_FORMAT(E, format), … argument 105 #define BT_PRINT_W(tag, format, ...) {esp_log_write(ESP_LOG_WARN, tag, LOG_FORMAT(W, format), … argument 106 #define BT_PRINT_I(tag, format, ...) {esp_log_write(ESP_LOG_INFO, tag, LOG_FORMAT(I, format), … argument 107 #define BT_PRINT_D(tag, format, ...) {esp_log_write(ESP_LOG_DEBUG, tag, LOG_FORMAT(D, format), … argument 108 #define BT_PRINT_V(tag, format, ...) {esp_log_write(ESP_LOG_VERBOSE, tag, LOG_FORMAT(V, format), … argument
|
/hal_espressif-3.6.0/components/mdns/host_test/components/esp_system_protocols_linux/ |
D | esp_log_impl.c | 26 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-3.6.0/examples/bluetooth/esp_ble_mesh/common_components/button/ |
D | button.c | 34 #define IOT_CHECK(tag, a, ret) if(!(a)) { \ argument 38 #define ERR_ASSERT(tag, param) IOT_CHECK(tag, (param) == ESP_OK, ESP_FAIL) argument 39 #define POINT_ASSERT(tag, param, ret) IOT_CHECK(tag, (param) != NULL, (ret)) argument
|
/hal_espressif-3.6.0/components/usb/test/common/ |
D | test_usb_mock_classes.c | 60 …sc_scsi_init_cbw(mock_msc_bulk_cbw_t *cbw, bool is_read, int offset, int num_sectors, uint32_t tag) in mock_msc_scsi_init_cbw()
|
/hal_espressif-3.6.0/examples/bluetooth/nimble/bleprph/main/ |
D | main.c | 32 static const char *tag = "NimBLE_BLE_PRPH"; variable
|
/hal_espressif-3.6.0/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()
|