| /Zephyr-latest/include/zephyr/sys/ | 
| D | __assert.h | 42 #define __ASSERT_PRINT(fmt, ...) assert_print(fmt, ##__VA_ARGS__)  argument44 #define __ASSERT_PRINT(fmt, ...)  argument
 48 #define __ASSERT_MSG_INFO(fmt, ...)  argument
 50 #define __ASSERT_MSG_INFO(fmt, ...) __ASSERT_PRINT("\t" fmt "\n", ##__VA_ARGS__)  argument
 120 #define __ASSERT(test, fmt, ...)                                          \  argument
 130 #define __ASSERT_EVAL(expr1, expr2, test, fmt, ...)                \  argument
 140 #define __ASSERT(test, fmt, ...) { }  argument
 141 #define __ASSERT_EVAL(expr1, expr2, test, fmt, ...) expr1  argument
 146 #define __ASSERT(test, fmt, ...) { }  argument
 147 #define __ASSERT_EVAL(expr1, expr2, test, fmt, ...) expr1  argument
 
 | 
| D | printk.h | 68 #define vsnprintk(str, size, fmt, ap) vsnprintf(str, size, fmt, ap)  argument
 | 
| /Zephyr-latest/subsys/bluetooth/common/ | 
| D | bt_shell_private.c | 17 static void wall_vfprintf(enum shell_vt100_color color, const char *fmt, va_list args)  in wall_vfprintf()46 		      const char *fmt, ...)  in bt_shell_fprintf()
 55 void bt_shell_fprintf_info(const char *fmt, ...)  in bt_shell_fprintf_info()
 64 void bt_shell_fprintf_print(const char *fmt, ...)  in bt_shell_fprintf_print()
 73 void bt_shell_fprintf_warn(const char *fmt, ...)  in bt_shell_fprintf_warn()
 82 void bt_shell_fprintf_error(const char *fmt, ...)  in bt_shell_fprintf_error()
 
 | 
| D | assert.h | 9 #define BT_ASSERT_PRINT_MSG(fmt, ...) __ASSERT_MSG_INFO(fmt, ##__VA_ARGS__)  argument12 #define BT_ASSERT_PRINT_MSG(fmt, ...)  argument
 30 #define BT_ASSERT_MSG(cond, fmt, ...)                                                              \  argument
 
 | 
| /Zephyr-latest/subsys/net/lib/shell/ | 
| D | net_shell_private.h | 11 #define PR(fmt, ...)                                                            \  argument20 #define PR_SHELL(sh, fmt, ...)                                                  \  argument
 29 #define PR_ERROR(fmt, ...)                                                      \  argument
 38 #define PR_INFO(fmt, ...)                                                       \  argument
 47 #define PR_WARNING(fmt, ...)                                                    \  argument
 
 | 
| /Zephyr-latest/subsys/net/lib/http/headers/ | 
| D | mlog.h | 14 #define LOG_INF(fmt, args...) printf("I: " fmt "\n", ##args)  argument15 #define LOG_ERR(fmt, args...) printf("E: " fmt "\n", ##args)  argument
 16 #define LOG_DBG(fmt, args...) printf("D: " fmt "\n", ##args)  argument
 
 | 
| /Zephyr-latest/subsys/testsuite/include/zephyr/ | 
| D | tc_util.h | 25 #define PRINT_DATA(fmt, ...) printk(fmt, ##__VA_ARGS__)  argument117 #define TC_ERROR(fmt, ...)                               \  argument
 124 static inline void print_nothing(const char *fmt, ...)  in print_nothing()
 131 #define TC_PRINT(fmt, ...) PRINT_DATA(fmt, ##__VA_ARGS__)  argument
 133 #define TC_PRINT(fmt, ...) print_nothing(fmt, ##__VA_ARGS__)  argument
 138 #define TC_SUMMARY_PRINT(fmt, ...) PRINT_DATA(fmt, ##__VA_ARGS__)  argument
 157 #define TC_END(result, fmt, ...) PRINT_DATA(fmt, ##__VA_ARGS__)  argument
 162 #define TC_END_PRINT(result, fmt, ...) PRINT_DATA(fmt, ##__VA_ARGS__); PRINT_LINE  argument
 164 #define TC_END_PRINT(result, fmt, ...) print_nothing(fmt)  argument
 189 #define TC_SUITE_PRINT(fmt, ...) PRINT_DATA(fmt, ##__VA_ARGS__)  argument
 
 | 
| /Zephyr-latest/drivers/gnss/ | 
| D | gnss_dump.c | 85 	const char *fmt = "gnss_info: {satellites_cnt: %u, hdop: %u.%u, fix_status: %s, "  in gnss_dump_info()  local98 	const char *fmt = "navigation_data: {latitude: %s%lli.%09lli, longitude : %s%lli.%09lli, "  in gnss_dump_nav_data()  local
 121 	const char *fmt = "gnss_time: {hour: %u, minute: %u, millisecond %u, month_day %u, "  in gnss_dump_time()  local
 134 	const char *fmt = "gnss_satellite: {prn: %u, snr: %u, elevation %u, azimuth %u, "  in gnss_dump_satellite()  local
 
 | 
| /Zephyr-latest/tests/drivers/video/api/src/ | 
| D | video_emul.c | 29 	struct video_format fmt = {0};  in ZTEST()  local78 	struct video_format fmt;  in ZTEST()  local
 146 	struct video_format fmt;  in ZTEST()  local
 
 | 
| /Zephyr-latest/modules/littlefs/ | 
| D | zephyr_lfs_config.h | 53 #define LFS_TRACE(fmt, ...) LOG_DBG("%s:%d:trace: " fmt, __FILE__, __LINE__, ##__VA_ARGS__)  argument60 #define LFS_DEBUG(fmt, ...) LOG_DBG("%s:%d: " fmt, __FILE__, __LINE__, ##__VA_ARGS__)  argument
 64 #define LFS_WARN(fmt, ...) LOG_WRN("%s:%d: " fmt, __FILE__, __LINE__, ##__VA_ARGS__)  argument
 68 #define LFS_ERROR(fmt, ...) LOG_ERR("%s:%d: " fmt, __FILE__, __LINE__, ##__VA_ARGS__)  argument
 
 | 
| /Zephyr-latest/subsys/logging/ | 
| D | log_minimal.c | 15 void z_log_minimal_printk(const char *fmt, ...)  in z_log_minimal_printk()25 void z_log_minimal_vprintk(const char *fmt, va_list ap)  in z_log_minimal_vprintk()
 
 | 
| /Zephyr-latest/soc/raspberrypi/rpi_pico/common/ | 
| D | soc.c | 29 void __attribute__((noreturn)) panic(const char *fmt, ...)  in panic()
 | 
| /Zephyr-latest/modules/trusted-firmware-m/src/ | 
| D | zephyr_tfm_log.c | 9 int tfm_log_printf(const char *fmt, ...)  in tfm_log_printf()
 | 
| /Zephyr-latest/lib/os/ | 
| D | assert.c | 47 void assert_print(const char *fmt, ...)  in assert_print()
 | 
| D | printk.c | 101 void vprintk(const char *fmt, va_list ap)  in vprintk()192 void printk(const char *fmt, ...)  in printk()
 230 int snprintk(char *str, size_t size, const char *fmt, ...)  in snprintk()
 242 int vsnprintk(char *str, size_t size, const char *fmt, va_list ap)  in vsnprintk()
 
 | 
| /Zephyr-latest/include/zephyr/net/ | 
| D | net_core.h | 53 #define NET_DBG(fmt, ...) LOG_DBG("(%s): " fmt,				\  argument60 #define NET_ERR(fmt, ...) LOG_ERR(fmt, ##__VA_ARGS__)  argument
 61 #define NET_WARN(fmt, ...) LOG_WRN(fmt, ##__VA_ARGS__)  argument
 62 #define NET_INFO(fmt, ...) LOG_INF(fmt,  ##__VA_ARGS__)  argument
 
 | 
| /Zephyr-latest/tests/bluetooth/controller/mock_ctrl/src/ | 
| D | assert.c | 11 void assert_print(const char *fmt, ...)  in assert_print()
 | 
| /Zephyr-latest/tests/bluetooth/host/host_mocks/ | 
| D | assert.c | 12 void assert_print(const char *fmt, ...)  in assert_print()
 | 
| /Zephyr-latest/tests/subsys/shell/shell_custom_header/src/ | 
| D | zephyr_custom_shell.h | 14 #define shell_fprintf(sh, color, fmt, ...)                                                         \  argument
 | 
| /Zephyr-latest/tests/lib/acpi/unit/src/ | 
| D | assert.c | 11 void assert_print(const char *fmt, ...)  in assert_print()
 | 
| /Zephyr-latest/tests/net/mocks/ | 
| D | assert.c | 12 void assert_print(const char *fmt, ...)  in assert_print()
 | 
| /Zephyr-latest/drivers/video/ | 
| D | video_emul_rx.c | 26 	struct video_format fmt;  member85 			   struct video_format *fmt)  in emul_rx_set_fmt()
 110 			   struct video_format *fmt)  in emul_rx_get_fmt()
 147 	struct video_format *fmt = &data->fmt;  in emul_rx_worker()  local
 173 	struct video_format *fmt = &data->fmt;  in emul_rx_enqueue()  local
 
 | 
| /Zephyr-latest/samples/drivers/video/capture/src/ | 
| D | main.c | 70 				       const struct video_format fmt)  in video_display_frame()86 	struct video_format fmt;  in main()  local
 
 | 
| /Zephyr-latest/subsys/bluetooth/controller/hal/ | 
| D | debug.h | 17 #define LL_ASSERT_MSG(cond, fmt, ...) \  argument26 #define LL_ASSERT_MSG(cond, fmt, ...) \  argument
 
 | 
| /Zephyr-latest/samples/subsys/logging/logger/src/ | 
| D | ext_log_system_adapter.c | 25 static void log_handler(enum ext_log_level level, const char *fmt, ...)  in log_handler()
 |