Home
last modified time | relevance | path

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

/mcuboot-2.7.6/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-2.7.6/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-2.7.6/sim/src/
Dlib.rs10 fmt,
80 impl fmt::Display for DeviceName {
81 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
103 fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { in expecting()
Dtlv.rs584 struct OkmLen<T: core::fmt::Debug + PartialEq>(T); in make_tlv()
/mcuboot-2.7.6/ext/mbedtls-asn1/include/mbedtls/
Dplatform.h209 int mbedtls_platform_win32_snprintf( char *s, size_t n, const char *fmt, ... );
/mcuboot-2.7.6/scripts/imgtool/
Dimage.py489 fmt = (e +
500 assert struct.calcsize(fmt) == IMAGE_HEADER_SIZE
501 header = struct.pack(fmt,
/mcuboot-2.7.6/ptest/src/
Dmain.rs270 use std::fmt::Write; in textual()