Home
last modified time | relevance | path

Searched refs:fmt (Results 1 – 12 of 12) sorted by relevance

/mcuboot-latest/boot/espressif/hal/include/
Desp_log.h17 #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
Dsoc_log.h12 #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/
Dtest_utils.h45 #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/
Drun-tests.go81 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 …]
Dtest-compile.go43 fmt.Printf("Compiling %q\n", group.ShortName)
45 fmt.Sprintf("test-%s", group.ShortName))
/mcuboot-latest/sim/src/
Dlib.rs10 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()
Dtlv.rs711 struct OkmLen<T: core::fmt::Debug + PartialEq>(T); in make_tlv()
/mcuboot-latest/boot/espressif/hal/include/mcuboot_config/
Dmcuboot_logging.h12 extern int ets_printf(const char *fmt, ...);
/mcuboot-latest/ext/mbedtls-asn1/include/mbedtls/
Dplatform.h217 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/
Dmain.rs331 use std::fmt::Write; in textual()
345 use std::fmt::Write; in simple_textual()
/mcuboot-latest/scripts/imgtool/
Dimage.py731 fmt = (e +
742 assert struct.calcsize(fmt) == IMAGE_HEADER_SIZE
743 header = struct.pack(fmt,
/mcuboot-latest/boot/espressif/port/
Desp_mcuboot.c67 extern int ets_printf(const char *fmt, ...);