Lines Matching defs:fmt
40 const char *fmt = format;
41 while (*fmt != '\0') {
42 char fmtChar = *fmt;
49 ++fmt;
51 return fmt;
56 const char *fmt = format;
57 while (*fmt != '\0') {
58 ++fmt;
60 if (*(fmt - 1) != '%') {
64 if (*fmt == '%') {
65 ++fmt; /* Point to the character after the %. Correct handling %%xx */
68 /* Now parse %..., fmt point to the character after the % */
69 fmt = SecSkipKnownFlags(fmt);
70 if (*fmt == 'n') {