/mcuboot-latest/boot/espressif/hal/include/ |
D | esp_log.h | 17 #define ESP_LOGE(tag, fmt, ...) MCUBOOT_LOG_ERR("[%s] " fmt, tag, ##__VA_ARGS__) argument 18 #define ESP_LOGW(tag, fmt, ...) MCUBOOT_LOG_WRN("[%s] " fmt, tag, ##__VA_ARGS__) argument 19 #define ESP_LOGI(tag, fmt, ...) MCUBOOT_LOG_INF("[%s] " fmt, tag, ##__VA_ARGS__) argument 20 #define ESP_LOGD(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument 21 #define ESP_LOGV(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument 23 #define ESP_EARLY_LOGE(tag, fmt, ...) MCUBOOT_LOG_ERR("[%s] " fmt, tag, ##__VA_ARGS__) argument 24 #define ESP_EARLY_LOGW(tag, fmt, ...) MCUBOOT_LOG_WRN("[%s] " fmt, tag, ##__VA_ARGS__) argument 25 #define ESP_EARLY_LOGI(tag, fmt, ...) MCUBOOT_LOG_INF("[%s] " fmt, tag, ##__VA_ARGS__) argument 26 #define ESP_EARLY_LOGD(tag, fmt, ...) MCUBOOT_LOG_DBG("[%s] " fmt, tag, ##__VA_ARGS__) argument 27 #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
|
/mcuboot-latest/ext/tinycrypt/tests/include/ |
D | test_utils.h | 45 #define PRINT_DATA(fmt, ...) printf(fmt, ##__VA_ARGS__) argument 61 #define TC_ERROR(fmt, ...) \ argument 64 PRINT_DATA(fmt, ##__VA_ARGS__); \ 67 #define TC_PRINT(fmt, ...) PRINT_DATA(fmt, ##__VA_ARGS__) argument 69 #define TC_END(result, fmt, ...) PRINT_DATA(fmt, ##__VA_ARGS__) argument
|
/mcuboot-latest/samples/zephyr/ |
D | run-tests.go | 81 fmt.Printf("Running %q\n", group.Name) 82 fmt.Fprintf(lg, "-------------------------------------\n") 83 fmt.Fprintf(lg, "---- Running %q\n", group.Name) 112 fmt.Fprintf(lg, "---- Passed\n") 114 fmt.Printf(" Passed!\n") 123 fmt.Printf(" %s\n", cmd) 124 fmt.Fprintf(lg, "---- Run: %s\n", cmd) 146 fmt.Fprintf(lg, "---- expect: %q\n", exp) 154 fmt.Fprintf(lg, "---- target: %q\n", line) 159 fmt.Fprintf(lg, "timeout, didn't receive output\n") [all …]
|
D | test-compile.go | 43 fmt.Printf("Compiling %q\n", group.ShortName) 45 fmt.Sprintf("test-%s", group.ShortName))
|
/mcuboot-latest/sim/src/ |
D | lib.rs | 10 fmt, 81 impl fmt::Display for DeviceName { 82 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method 105 fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { in expecting()
|
D | tlv.rs | 711 struct OkmLen<T: core::fmt::Debug + PartialEq>(T); in make_tlv()
|
/mcuboot-latest/boot/espressif/hal/include/mcuboot_config/ |
D | mcuboot_logging.h | 12 extern int ets_printf(const char *fmt, ...);
|
/mcuboot-latest/ext/mbedtls-asn1/include/mbedtls/ |
D | platform.h | 217 int mbedtls_platform_win32_snprintf( char *s, size_t n, const char *fmt, ... ); 253 int mbedtls_platform_win32_vsnprintf( char *s, size_t n, const char *fmt, va_list arg );
|
/mcuboot-latest/ptest/src/ |
D | main.rs | 331 use std::fmt::Write; in textual() 345 use std::fmt::Write; in simple_textual()
|
/mcuboot-latest/scripts/imgtool/ |
D | image.py | 731 fmt = (e + 742 assert struct.calcsize(fmt) == IMAGE_HEADER_SIZE 743 header = struct.pack(fmt,
|
/mcuboot-latest/boot/espressif/port/ |
D | esp_mcuboot.c | 67 extern int ets_printf(const char *fmt, ...);
|