Lines Matching refs:fmt
1512 const char *fmt, va_list args) in shell_vfprintf() argument
1520 __ASSERT_NO_MSG(fmt); in shell_vfprintf()
1535 z_shell_vfprintf(sh, color, fmt, args); in shell_vfprintf()
1553 const char *fmt, ...) in shell_fprintf_impl() argument
1557 va_start(args, fmt); in shell_fprintf_impl()
1558 shell_vfprintf(sh, color, fmt, args); in shell_fprintf_impl()
1562 void shell_fprintf_info(const struct shell *sh, const char *fmt, ...) in shell_fprintf_info() argument
1566 va_start(args, fmt); in shell_fprintf_info()
1567 shell_vfprintf(sh, SHELL_INFO, fmt, args); in shell_fprintf_info()
1571 void shell_fprintf_normal(const struct shell *sh, const char *fmt, ...) in shell_fprintf_normal() argument
1575 va_start(args, fmt); in shell_fprintf_normal()
1576 shell_vfprintf(sh, SHELL_NORMAL, fmt, args); in shell_fprintf_normal()
1580 void shell_fprintf_warn(const struct shell *sh, const char *fmt, ...) in shell_fprintf_warn() argument
1584 va_start(args, fmt); in shell_fprintf_warn()
1585 shell_vfprintf(sh, SHELL_WARNING, fmt, args); in shell_fprintf_warn()
1589 void shell_fprintf_error(const struct shell *sh, const char *fmt, ...) in shell_fprintf_error() argument
1593 va_start(args, fmt); in shell_fprintf_error()
1594 shell_vfprintf(sh, SHELL_ERROR, fmt, args); in shell_fprintf_error()