Lines Matching refs:fmt0
61 -parse_printf_arg_fmt (const char *fmt0, struct printf_args *args)
63 + * Parse printf() fmt0 string into args arguments.
65 + * The parsed arguments are either used by a printf() function to format the fmt0
71 + * fmt0 to limit exposure to possible errors in printf() handling. It also
75 + * The max_args allows to set a maximum number of accepted arguments. If the fmt0
80 +parse_printf_arg_fmt (const char *fmt0, struct printf_args *args,
85 @@ -660,7 +678,12 @@ parse_printf_arg_fmt (const char *fmt0, struct printf_args *args)
99 @@ -691,9 +714,19 @@ parse_printf_arg_fmt (const char *fmt0, struct printf_args *args)
119 @@ -701,6 +734,9 @@ parse_printf_arg_fmt (const char *fmt0, struct printf_args *args)
129 @@ -791,6 +827,8 @@ parse_printf_arg_fmt (const char *fmt0, struct printf_args *args)
138 @@ -798,7 +836,7 @@ parse_printf_args (const char *fmt0, struct printf_args *args, va_list args_in)
142 - parse_printf_arg_fmt (fmt0, args);
143 + parse_printf_arg_fmt (fmt0, args, 0, 0);