Lines Matching refs:fmt
17 static void wall_vfprintf(enum shell_vt100_color color, const char *fmt, va_list args) in wall_vfprintf() argument
28 shell_vfprintf(sh, color, fmt, args_copy); in wall_vfprintf()
46 const char *fmt, ...) in bt_shell_fprintf() argument
50 va_start(args, fmt); in bt_shell_fprintf()
51 wall_vfprintf(color, fmt, args); in bt_shell_fprintf()
55 void bt_shell_fprintf_info(const char *fmt, ...) in bt_shell_fprintf_info() argument
59 va_start(args, fmt); in bt_shell_fprintf_info()
60 wall_vfprintf(SHELL_INFO, fmt, args); in bt_shell_fprintf_info()
64 void bt_shell_fprintf_print(const char *fmt, ...) in bt_shell_fprintf_print() argument
68 va_start(args, fmt); in bt_shell_fprintf_print()
69 wall_vfprintf(SHELL_NORMAL, fmt, args); in bt_shell_fprintf_print()
73 void bt_shell_fprintf_warn(const char *fmt, ...) in bt_shell_fprintf_warn() argument
77 va_start(args, fmt); in bt_shell_fprintf_warn()
78 wall_vfprintf(SHELL_WARNING, fmt, args); in bt_shell_fprintf_warn()
82 void bt_shell_fprintf_error(const char *fmt, ...) in bt_shell_fprintf_error() argument
86 va_start(args, fmt); in bt_shell_fprintf_error()
87 wall_vfprintf(SHELL_ERROR, fmt, args); in bt_shell_fprintf_error()